Skip to content
Snippets Groups Projects
Commit b36158bc authored by auscompgeek's avatar auscompgeek Committed by Svetlana Tkachenko
Browse files

plugins/__init__: PEP8 E231: whitespace after ':'


Signed-off-by: default avatarGryllida A <Gryllida@GMAIL.com>
parent cab95d37
No related branches found
No related tags found
No related merge requests found
......@@ -66,7 +66,7 @@ def refresh(pluginName=None):
#for file (module) in the file list
for f in _files:
#Set "plugin" in the environment so that @plugin decorators work correctly
env = {"plugin":plugin}
env = {"plugin": plugin}
#Execute the file. The file will automatically update the list of plugins, due to the @plugin decorator
exec(compile(open(f).read(), f, 'exec'), env, env)
......@@ -89,7 +89,7 @@ def __reload(pluginName):
#if the requested
if pluginName in classes:
#Set "plugin" in the environment so that @plugin decorators work correctly
env = {"plugin":plugin}
env = {"plugin": plugin}
#Execute the file. The file will automatically update the list of plugins, due to the @plugin decorator
exec(compile(open(f).read(), f, 'exec'), env, env)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment