Skip to content

Commit

Permalink
Fix code style issues with Black
Browse files Browse the repository at this point in the history
  • Loading branch information
lint-action committed Feb 28, 2024
1 parent dea4ab1 commit 125f277
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion delinea/secrets/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -461,7 +461,7 @@ def get_child_folder_ids_by_folderid(self, folder_id):
child_folder_ids.append(childFolder["id"])

return child_folder_ids


class SecretServerV0(SecretServer):
"""A class that uses an *OAuth2 Bearer Token* to access the Secret Server
Expand Down
5 changes: 4 additions & 1 deletion tests/test_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,4 +61,7 @@ def test_server_secret_ids_by_folderid(env_vars, secret_server):


def test_server_child_folder_ids_by_folderid(env_vars, secret_server):
assert type(secret_server.get_child_folder_ids_by_folderid(env_vars["folder_id"])) is list
assert (
type(secret_server.get_child_folder_ids_by_folderid(env_vars["folder_id"]))
is list
)

0 comments on commit 125f277

Please sign in to comment.