Most of the pep8 changes finished. Be careful, things may be horribly broken.

This commit is contained in:
Storm Dragon
2025-07-03 13:22:00 -04:00
parent 7408951152
commit 21bb9c6083
344 changed files with 6374 additions and 6083 deletions

View File

@ -18,12 +18,12 @@ class command():
def shutdown(self):
pass
def getDescription(self):
def get_description(self):
return _('get current quick menu value')
def run(self):
value = self.env['runtime']['quickMenuManager'].getCurrentValue()
self.env['runtime']['outputManager'].presentText(value, interrupt=True)
value = self.env['runtime']['QuickMenuManager'].get_current_value()
self.env['runtime']['OutputManager'].present_text(value, interrupt=True)
def setCallback(self, callback):
def set_callback(self, callback):
pass