Skip to content

Commit

Permalink
sesdev: drop unnecessary parents
Browse files Browse the repository at this point in the history
Addresses liter's message:
  C0325: Unnecessary parens after '=' keyword (superfluous-parens)

Signed-off-by: Kyr Shatskyy <kyrylo.shatskyy@suse.com>
  • Loading branch information
kshtsk committed Mar 3, 2023
1 parent 6a359e6 commit 1997697
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sesdev/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -711,7 +711,7 @@ def _create_command(deployment_id, settings_dict):
click.echo("=== Creating deployment \"{}\" with the following configuration ==="
.format(deployment_id)
)
click.echo(dep.configuration_report(show_individual_vms=(not interactive)))
click.echo(dep.configuration_report(show_individual_vms=not interactive))
really_want_to = True
if interactive:
not_sure = True
Expand Down

0 comments on commit 1997697

Please sign in to comment.