Skip to content

Commit 0a76b60

Browse files
committed
Appease flake8.
Signed-off-by: Kurt Garloff <[email protected]>
1 parent 6b1577f commit 0a76b60

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Tests/iaas/key-manager/check-for-key-manager.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,8 @@ def _find_secret(conn: openstack.connection.Connection, secret_name_or_id: str):
6565
exception due to an unexpected microversion parameter.
6666
"""
6767
secrets = conn.key_manager.secrets()
68-
return [ s for s in secrets if s.name == secret_name_or_id or s.id == secret_name_or_id ]
68+
return [s for s in secrets if s.name == secret_name_or_id or s.id == secret_name_or_id]
69+
6970

7071
def check_key_manager_permissions(conn: openstack.connection.Connection) -> None:
7172
"""

0 commit comments

Comments
 (0)