Skip to content
Snippets Groups Projects

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

Merged Adham Hashibon requested to merge py2-compatibility into master
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
@@ -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:
Loading