Skip to content

Commit 6cce079

Browse files
committed
lint: minor cleanup - part 2
Note: The signing key in testdata was changed to accomodate upstream ecdsa change in v0.19.0
1 parent 15d6bbb commit 6cce079

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

tests/conftest.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525

2626
@pytest_asyncio.fixture(scope="function")
27-
async def auth_mgr(event_loop):
27+
async def auth_mgr():
2828
session = SignedSession()
2929
mgr = AuthenticationManager(session, "abc", "123", "http://localhost")
3030
mgr.oauth = OAuth2TokenResponse.model_validate_json(
@@ -37,7 +37,7 @@ async def auth_mgr(event_loop):
3737

3838

3939
@pytest_asyncio.fixture(scope="function")
40-
async def xal_mgr(event_loop):
40+
async def xal_mgr():
4141
session = SignedSession()
4242
mgr = XALManager(
4343
session,

tests/data/test_signing_key.pem

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
-----BEGIN EC PRIVATE KEY-----
2-
MHcCAQEEIObr5IVtB+DQcn25+R9n4K/EyUUSbVvxIJY7WhVeELUuoAoGCCqGSM49
3-
AwEHoUQDQgAEOKyCQ9qH5U4lZcS0c5/LxIyKvOpKe0l3x4Eg5OgDbzezKNLRgT28
4-
fd4Fq3rU/1OQKmx6jSq0vTB5Ao/48m0iGg==
2+
MHcCAQEEIObr5IVtB+DQcn25+R9n4K/EyUUSbVvxIJY7WhVeELUuoAoGCCqGSM49AwEHoUQDQgAE
3+
OKyCQ9qH5U4lZcS0c5/LxIyKvOpKe0l3x4Eg5OgDbzezKNLRgT28fd4Fq3rU/1OQKmx6jSq0vTB5
4+
Ao/48m0iGg==
55
-----END EC PRIVATE KEY-----

tests/test_ratelimits.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ async def helper_reach_and_wait_for_burst(
146146
make_request, start_time, burst_limit: int, expected_counter: int
147147
):
148148
# Make as many requests as possible without exceeding the BURST limit.
149-
for i in range(burst_limit):
149+
for _ in range(burst_limit):
150150
await make_request()
151151

152152
# Make another request, ensure that it raises the exception.
@@ -202,7 +202,7 @@ async def make_request():
202202
)
203203

204204
# Now, make the rest of the requests (10 left, 20/30 done!)
205-
for i in range(10):
205+
for _ in range(10):
206206
await make_request()
207207

208208
# Wait for the burst limit to 'reset'.

xbox/webapi/api/provider/ratelimitedprovider.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -63,10 +63,10 @@ def __handle_rate_limit_setup(self):
6363
def __parse_rate_limit_key(
6464
self, key: Union[int, Dict[str, int]], period: TimePeriod
6565
) -> ParsedRateLimit:
66-
key_type = type(key)
67-
if isinstance(key_type, int):
66+
if isinstance(key, int) and not isinstance(key, bool):
67+
# bool is a subclass of int, hence the explicit check
6868
return ParsedRateLimit(read=key, write=key, period=period)
69-
elif isinstance(key_type, dict):
69+
elif isinstance(key, dict):
7070
# TODO: schema here?
7171
# Since the key-value pairs match we can just pass the dict to the model
7272
return ParsedRateLimit(**key, period=period)

0 commit comments

Comments
 (0)