Skip to content

Commit b66bb8b

Browse files
committed
refactor: Format and lint
1 parent ea08f22 commit b66bb8b

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,8 +99,8 @@
9999
],
100100
keywords="",
101101
install_requires=[
102-
# [crypto] ensures that it installs the `cryptography` library as well
103-
# based on constraints specified in https://github.com/jpadilla/pyjwt/blob/master/setup.cfg#L50
102+
# [crypto] ensures that it installs the `cryptography` library as well
103+
# based on constraints specified in https://github.com/jpadilla/pyjwt/blob/master/setup.cfg#L50
104104
"PyJWT[crypto]>=2.6.0 ,<3.0.0",
105105
"httpx>=0.15.0 ,<0.24.0",
106106
"pycryptodome==3.10.*",

tests/thirdparty/test_thirdparty.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -116,9 +116,8 @@ def api_side_effect(_: httpx.Request):
116116
apple = Apple(
117117
"client-id", "client-key-id", "client-private-key", "client-team-id"
118118
)
119-
keys = (
120-
await apple._fetch_apple_public_keys() # pylint: disable=protected-access
121-
)
119+
# pylint: disable=protected-access
120+
keys = await apple._fetch_apple_public_keys() # type: ignore
122121

123122
assert mocked_route.call_count == 1
124123
assert len(keys) == 3

0 commit comments

Comments
 (0)