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 ...@@ -29,12 +29,12 @@ from src.workflow import Workflow
) )
@click.option( @click.option(
'--render-graphs', '--no-render-graphs',
'render_graphs', 'render_graphs',
required=False, required=False,
default=True, default=True,
is_flag=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.', 'the mermaid and dot formats are always generated.',
) )
......
...@@ -159,7 +159,7 @@ class Workflow: ...@@ -159,7 +159,7 @@ class Workflow:
tab.append({"@id":authors[author], "email":author}) tab.append({"@id":authors[author], "email":author})
return tab return tab
else: else:
authors = authors.split(',') authors = self.authors.split(',')
tab = [] tab = []
for a in authors: for a in authors:
tab.append({"@id":a.strip()}) 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