From ea27ef9d69d777bc6722b5d99b033122b338ebbf Mon Sep 17 00:00:00 2001 From: =?utf8?q?Karl=20Hasselstr=C3=B6m?= Date: Thu, 24 Jan 2008 07:08:57 +0100 Subject: [PATCH] Remove unused default values MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit This function was called from only one place, and the default values weren't used there, so they're useless. Signed-off-by: Karl Hasselström --- stgit/commands/status.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/stgit/commands/status.py b/stgit/commands/status.py index 708dd16..02a5832 100644 --- a/stgit/commands/status.py +++ b/stgit/commands/status.py @@ -66,9 +66,8 @@ options = [make_option('-m', '--modified', action = 'store_true')] -def status(files = None, modified = False, new = False, deleted = False, - conflict = False, unknown = False, noexclude = False, - diff_flags = []): +def status(files, modified, new, deleted, conflict, unknown, noexclude, + diff_flags): """Show the tree status """ cache_files = git.tree_status(files, -- 2.11.0