Skip to content
Snippets Groups Projects
Commit a58f6179 authored by Thomas Woerner's avatar Thomas Woerner
Browse files

ipavault: Fix missing whitespace after keyword issue

flake8 reports an issue in ipavault:

  plugins/modules/ipavault.py:528:20: E275 missing whitespace after keyword

The missing whitespace has been added: "and not(" -> "and not ("
parent c2516323
No related branches found
No related tags found
No related merge requests found
......@@ -525,7 +525,7 @@ def check_encryption_params( # pylint: disable=unused-argument
if (
salt is not None
and not(
and not (
any([password, password_file])
and any([new_password, new_password_file])
)
......
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