Skip to content

Commit 0a7aeac

Browse files
authored
Merge pull request #116 from OpenXbox/fix/lints
fix: lints / code cleanup
2 parents 195718d + 6cce079 commit 0a7aeac

File tree

5 files changed

+27
-26
lines changed

5 files changed

+27
-26
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

+10-9
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
1+
import asyncio
12
from datetime import datetime, timedelta
3+
24
from httpx import Response
35
import pytest
4-
import asyncio
56

6-
from tests.common import get_response_json
77
from xbox.webapi.api.provider.ratelimitedprovider import RateLimitedProvider
8-
98
from xbox.webapi.common.exceptions import RateLimitExceededException, XboxException
109
from xbox.webapi.common.ratelimits import CombinedRateLimit
1110
from xbox.webapi.common.ratelimits.models import TimePeriod
1211

12+
from tests.common import get_response_json
13+
1314

1415
def helper_test_combinedratelimit(
1516
crl: CombinedRateLimit, burstLimit: int, sustainLimit: int
@@ -18,8 +19,8 @@ def helper_test_combinedratelimit(
1819
sustain = crl.get_limits_by_period(TimePeriod.SUSTAIN)
1920

2021
# These functions should return a list with one element
21-
assert type(burst) == list
22-
assert type(sustain) == list
22+
assert isinstance(burst, list)
23+
assert isinstance(sustain, list)
2324

2425
assert len(burst) == 1
2526
assert len(sustain) == 1
@@ -111,7 +112,7 @@ async def make_request():
111112
route = respx_mock.get("https://social.xboxlive.com").mock(
112113
return_value=Response(200, json=get_response_json("people_summary_own"))
113114
)
114-
ret = await xbl_client.people.get_friends_summary_own()
115+
await xbl_client.people.get_friends_summary_own()
115116

116117
assert route.called
117118

@@ -145,7 +146,7 @@ async def helper_reach_and_wait_for_burst(
145146
make_request, start_time, burst_limit: int, expected_counter: int
146147
):
147148
# Make as many requests as possible without exceeding the BURST limit.
148-
for i in range(burst_limit):
149+
for _ in range(burst_limit):
149150
await make_request()
150151

151152
# Make another request, ensure that it raises the exception.
@@ -175,7 +176,7 @@ async def make_request():
175176
route = respx_mock.get("https://social.xboxlive.com").mock(
176177
return_value=Response(200, json=get_response_json("people_summary_own"))
177178
)
178-
ret = await xbl_client.people.get_friends_summary_own()
179+
await xbl_client.people.get_friends_summary_own()
179180

180181
assert route.called
181182

@@ -201,7 +202,7 @@ async def make_request():
201202
)
202203

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

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

xbox/webapi/api/provider/ratelimitedprovider.py

+6-5
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,12 @@
44
Subclassed by providers with rate limit support
55
"""
66

7-
from typing import Union, Dict
7+
from typing import Dict, Union
8+
89
from xbox.webapi.api.provider.baseprovider import BaseProvider
910
from xbox.webapi.common.exceptions import XboxException
10-
from xbox.webapi.common.ratelimits.models import LimitType, ParsedRateLimit, TimePeriod
1111
from xbox.webapi.common.ratelimits import CombinedRateLimit
12+
from xbox.webapi.common.ratelimits.models import LimitType, ParsedRateLimit, TimePeriod
1213

1314

1415
class RateLimitedProvider(BaseProvider):
@@ -62,10 +63,10 @@ def __handle_rate_limit_setup(self):
6263
def __parse_rate_limit_key(
6364
self, key: Union[int, Dict[str, int]], period: TimePeriod
6465
) -> ParsedRateLimit:
65-
key_type = type(key)
66-
if key_type == int:
66+
if isinstance(key, int) and not isinstance(key, bool):
67+
# bool is a subclass of int, hence the explicit check
6768
return ParsedRateLimit(read=key, write=key, period=period)
68-
elif key_type == dict:
69+
elif isinstance(key, dict):
6970
# TODO: schema here?
7071
# Since the key-value pairs match we can just pass the dict to the model
7172
return ParsedRateLimit(**key, period=period)

xbox/webapi/common/ratelimits/__init__.py

+6-7
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
1+
from abc import ABCMeta, abstractmethod
12
from datetime import datetime, timedelta
2-
from typing import Union, List
3+
from typing import List, Union
34

45
from xbox.webapi.common.ratelimits.models import (
6+
IncrementResult,
7+
LimitType,
58
ParsedRateLimit,
69
TimePeriod,
7-
LimitType,
8-
IncrementResult,
910
)
1011

11-
from abc import ABCMeta, abstractmethod
12-
1312

1413
class RateLimit(metaclass=ABCMeta):
1514
"""
@@ -209,7 +208,7 @@ def get_reset_after(self) -> Union[datetime, None]:
209208

210209
# Construct a new list with only elements of instance datetime
211210
# (Effectively filtering out any None elements)
212-
dates_valid = [elem for elem in dates if type(elem) == datetime]
211+
dates_valid = [elem for elem in dates if isinstance(elem, datetime)]
213212

214213
# If dates_valid has any elements, return the one with the *later* timestamp.
215214
# This means that if two or more limits have been exceeded, we wait for both to have reset (by returning the later timestamp)
@@ -238,7 +237,7 @@ def get_limits_by_period(self, period: TimePeriod) -> List[SingleRateLimit]:
238237
def is_exceeded(self) -> bool:
239238
"""
240239
This function returns `True` if **any** rate limit has been exceeded.
241-
240+
242241
It behaves like an OR logic gate.
243242
"""
244243

0 commit comments

Comments
 (0)