Skip to content
Snippets Groups Projects
Commit 5d9ffc57 authored by Stefano Borini's avatar Stefano Borini
Browse files

Added use of super() that is compatible with python 2

parent 8479e52d
No related branches found
No related tags found
2 merge requests!20Use ids instead of names in bundles.,!21Added use of super() that is compatible with python 2
......@@ -54,7 +54,7 @@ class BDSSApplication(Application):
except NoMatches:
print("No extensions found")
super().__init__(plugins=plugins)
super(BDSSApplication, self).__init__(plugins=plugins)
def _workflow_default(self):
with open(self.workflow_filepath) as f:
......
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