From 6c2ea4f0a02118ecadc4514d0b8ab860ca83b07b Mon Sep 17 00:00:00 2001 From: Rapptz Date: Mon, 21 Feb 2022 22:43:19 -0500 Subject: [PATCH] Fix some type ignores in backoff and channel --- discord/backoff.py | 2 +- discord/channel.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/discord/backoff.py b/discord/backoff.py index 0d0cb7c40..cfb93ad23 100644 --- a/discord/backoff.py +++ b/discord/backoff.py @@ -72,7 +72,7 @@ class ExponentialBackoff(Generic[T]): rand = random.Random() rand.seed() - self._randfunc: Callable[..., Union[int, float]] = rand.randrange if integral else rand.uniform # type: ignore + self._randfunc: Callable[..., Union[int, float]] = rand.randrange if integral else rand.uniform @overload def delay(self: ExponentialBackoff[Literal[False]]) -> float: diff --git a/discord/channel.py b/discord/channel.py index 5e09e6f39..728da7544 100644 --- a/discord/channel.py +++ b/discord/channel.py @@ -584,7 +584,7 @@ class TextChannel(discord.abc.Messageable, discord.abc.GuildChannel, Hashable): from .webhook import Webhook if avatar is not None: - avatar = utils._bytes_to_base64_data(avatar) # type: ignore + avatar = utils._bytes_to_base64_data(avatar) # type: ignore - Silence reassignment error data = await self._state.http.create_webhook(self.id, name=str(name), avatar=avatar, reason=reason) return Webhook.from_state(data, state=self._state)