Skip to content

Commit c35d0bc

Browse files
Copilotzubinqayam
andcommitted
Clean up whitespace in ratelimit.py
Co-authored-by: zubinqayam <221898115+zubinqayam@users.noreply.github.com>
1 parent a7117eb commit c35d0bc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ratelimit.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ async def wrapper(*args, **kwargs):
2424
break
2525
if req is None:
2626
req = kwargs.get("request", None)
27-
27+
2828
# If no request found, just call the function
2929
if req is None:
3030
if inspect.iscoroutinefunction(func):
@@ -46,7 +46,7 @@ async def wrapper(*args, **kwargs):
4646
headers={"Retry-After": str(retry_after)},
4747
)
4848
_STORE[k] = (window_start, count + 1)
49-
49+
5050
# Call the original function
5151
if inspect.iscoroutinefunction(func):
5252
return await func(*args, **kwargs)

0 commit comments

Comments
 (0)