13 lines
229 B
Python
13 lines
229 B
Python
class CommandBase(object):
|
|
def execute(self, **kwargs):
|
|
pass
|
|
|
|
def execute_pending(self, callback):
|
|
return False
|
|
|
|
def has_pending_commands(self):
|
|
return False
|
|
|
|
def close(self):
|
|
pass
|