Skip to content
Snippets Groups Projects
Commit 759e20d2 authored by George Marchment's avatar George Marchment
Browse files

update paramater + fix bug

parent 3eacb197
No related branches found
No related tags found
No related merge requests found
Pipeline #13237 passed with stages
in 1 minute and 27 seconds
......@@ -29,12 +29,12 @@ from src.workflow import Workflow
)
@click.option(
'--render-graphs',
'--no-render-graphs',
'render_graphs',
required=False,
default=True,
is_flag=True,
help='Generate the graphs output in png format using graphviz (slower),'
help='Don\'t generate the graphs output in png format using graphviz (faster),'
'the mermaid and dot formats are always generated.',
)
......
......@@ -159,7 +159,7 @@ class Workflow:
tab.append({"@id":authors[author], "email":author})
return tab
else:
authors = authors.split(',')
authors = self.authors.split(',')
tab = []
for a in authors:
tab.append({"@id":a.strip()})
......
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