We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1183589 commit 97ece2eCopy full SHA for 97ece2e
src/aiida/cmdline/commands/cmd_computer.py
@@ -634,7 +634,7 @@ def _dry_run_callback(pks):
634
if pks:
635
echo.echo_report('The nodes with the following pks would be deleted: ' + ' '.join(map(str, pks)))
636
echo.echo_warning(f'YOU ARE ABOUT TO DELETE {len(pks)} NODES! THIS CANNOT BE UNDONE!')
637
- click.confirm('Shall I continue?', default=False)
+ confirm = click.confirm('Shall I continue?', default=False)
638
if not confirm:
639
raise click.Abort
640
return not confirm
0 commit comments