Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Oct 2, 2023
1 parent 8e9373d commit d42dd35
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions aiida_fleur/cmdline/workflows/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,9 @@ def cmd_workflow():


@cmd_workflow.command('res')
@arguments.PROCESS('process', type=ProcessParamType()
) #, type=WorkflowParamType(sub_classes=('aiida.node:process.workflow.workchain',)))
@arguments.PROCESS(
'process',
type=ProcessParamType()) #, type=WorkflowParamType(sub_classes=('aiida.node:process.workflow.workchain',)))
@click.option('--info/--no-info', default=False, help='Print an info header above each node.')
@click.option('-l', '--label', 'label', type=str, help='Print only output dicts with a certain link_label.')
@options_fl.SHOW()
Expand Down Expand Up @@ -69,8 +70,9 @@ def workchain_res(process, info, label, show, keys, fmt):


@cmd_workflow.command('inputdict')
@arguments.PROCESS('process', type=ProcessParamType()
) #, type=WorkflowParamType(sub_classes=('aiida.node:process.workflow.workchain',)))
@arguments.PROCESS(
'process',
type=ProcessParamType()) #, type=WorkflowParamType(sub_classes=('aiida.node:process.workflow.workchain',)))
@click.option('--info/--no-info', default=False, help='Print an info header above each node.')
@click.option('-l', '--label', 'label', type=str, help='Print only output dicts with a certain link_label.')
@options_fl.SHOW()
Expand Down

0 comments on commit d42dd35

Please sign in to comment.