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 ("
This commit is contained in:
Thomas Woerner
2022-08-16 10:18:03 +02:00
parent c251632368
commit a58f61792b

View File

@@ -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])
)