From a47dd7388cf58f1d7b028469c6bf8e793a5846ad Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Sat, 6 Jan 2024 16:00:46 +0000 Subject: [PATCH] style(pre-commit): auto fixes from pre-commit.com hooks --- discord/rate_limiting.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/discord/rate_limiting.py b/discord/rate_limiting.py index d80552fde3..6354176038 100644 --- a/discord/rate_limiting.py +++ b/discord/rate_limiting.py @@ -61,9 +61,7 @@ class GlobalRateLimit: Unix timestamp of when this class will next reset. """ - def __init__( - self, concurrency: int, per: float, remaining: int = MISSING - ) -> None: + def __init__(self, concurrency: int, per: float, remaining: int = MISSING) -> None: self.concurrency: int = concurrency self.per: float = per