Skip to content

Commit

Permalink
Fixed linting error
Browse files Browse the repository at this point in the history
  • Loading branch information
nathandloria committed Apr 13, 2022
1 parent adeb89e commit 37f869e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gcc_exec/gcc_workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def __init__(self, gcc_user_obj: GccUser, workflow_name: str) -> None:
}

def plan(
self, available_machines: list = [], xml_specification: str = None
self, available_machines: list, xml_specification: str = None
) -> list:
"""This method creates an execution plan based on a workflow specification."""
if xml_specification is None:
Expand Down
2 changes: 1 addition & 1 deletion gcc_exec/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def main(
)
gcc_workflow_obj = GccWorkflow(gcc_user_obj, workflow_name)

gcc_workflow_obj.plan()
gcc_workflow_obj.plan([])
gcc_workflow_obj.initialize()
gcc_workflow_obj.configure()
gcc_workflow_obj.execute()
Expand Down

0 comments on commit 37f869e

Please sign in to comment.