Remove unused default values
authorKarl Hasselström <kha@treskal.com>
Thu, 24 Jan 2008 06:08:57 +0000 (07:08 +0100)
committerKarl Hasselström <kha@treskal.com>
Thu, 24 Jan 2008 07:22:40 +0000 (08:22 +0100)
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 <kha@treskal.com>
stgit/commands/status.py

index 708dd16..02a5832 100644 (file)
@@ -66,9 +66,8 @@ options = [make_option('-m', '--modified',
                        action = 'store_true')]
 
 
                        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,
     """Show the tree status
     """
     cache_files = git.tree_status(files,