a little nicer wrt pep8
[sfa.git] / sfatables / command.py
index 5a33928..1cb58e7 100644 (file)
@@ -9,11 +9,18 @@ class Command:
     action = 'store_const'
 
     def __init__(self):
+        self.options = []
+        self.help = ''
+        self.type = 'command'
+        self.matches = False
+        self.targets = False
+        self.action = 'store_const'
+
         return
 
     def call(self, coptions, moptions, toptions):
         # Override this function
         return True
 
-    def __call__(self, coption, moptions, toptions):
+    def __call__(self, coptions, moptions, toptions):
         return self.call(coptions,moptions,toptions)