Skip to content

Commit 3b6d3af

Browse files
committed
Linting
1 parent f80d765 commit 3b6d3af

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

descope/management/user.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -675,7 +675,9 @@ def load_users(
675675
"""
676676
if user_ids is None or len(user_ids) == 0:
677677
raise AuthException(
678-
400, ERROR_TYPE_INVALID_ARGUMENT, "At least one user id needs to be supplied"
678+
400,
679+
ERROR_TYPE_INVALID_ARGUMENT,
680+
"At least one user id needs to be supplied",
679681
)
680682

681683
body: dict[str, Union[List[str], bool]] = {

tests/test_descope_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1076,7 +1076,7 @@ def test_base_url_none(self):
10761076
public_key=self.public_key_dict,
10771077
)
10781078

1079-
expected_base_url = common.DEFAULT_BASE_URL
1079+
expected_base_url = common.DEFAULT_BASE_URL
10801080
self.assertEqual(client._auth.http_client.base_url, expected_base_url)
10811081
self.assertEqual(client._mgmt._http.base_url, expected_base_url)
10821082

0 commit comments

Comments
 (0)