Commit 0784fa17 by Brian Coca

removed import q

parent 96bcf50a
...@@ -324,8 +324,6 @@ class GalaxyCLI(CLI): ...@@ -324,8 +324,6 @@ class GalaxyCLI(CLI):
f = open(role_file, 'r') f = open(role_file, 'r')
if role_file.endswith('.yaml') or role_file.endswith('.yml'): if role_file.endswith('.yaml') or role_file.endswith('.yml'):
rolesparsed = map(self.parse_requirements_files, yaml.safe_load(f)) rolesparsed = map(self.parse_requirements_files, yaml.safe_load(f))
import q
q(rolesparsed)
roles_left = [GalaxyRole(self.galaxy, **r) for r in rolesparsed] roles_left = [GalaxyRole(self.galaxy, **r) for r in rolesparsed]
else: else:
# roles listed in a file, one per line # roles listed in a file, one per line
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment