Most of the pep8 changes finished. Be careful, things may be horribly broken.
This commit is contained in:
@ -14,17 +14,17 @@ class command():
|
||||
|
||||
def initialize(self, environment):
|
||||
self.env = environment
|
||||
self.keyMakro = [[1, 'KEY_LEFTCTRL'], [1, 'KEY_G'], [
|
||||
self.key_macro = [[1, 'KEY_LEFTCTRL'], [1, 'KEY_G'], [
|
||||
0.05, 'sleep'], [0, 'KEY_G'], [0, 'KEY_LEFTCTRL']]
|
||||
|
||||
def shutdown(self):
|
||||
pass
|
||||
|
||||
def getDescription(self):
|
||||
def get_description(self):
|
||||
return 'No description found'
|
||||
|
||||
def run(self):
|
||||
self.env['runtime']['inputManager'].sendKeys(self.keyMakro)
|
||||
self.env['runtime']['InputManager'].send_keys(self.key_macro)
|
||||
|
||||
def setCallback(self, callback):
|
||||
def set_callback(self, callback):
|
||||
pass
|
||||
|
Reference in New Issue
Block a user