diff options
| author | Nadir Chowdhury <[email protected]> | 2020-11-28 08:16:49 +0000 |
|---|---|---|
| committer | GitHub <[email protected]> | 2020-11-28 03:16:49 -0500 |
| commit | 6b803acde4f6377b8ccad959350a61a3d524b619 (patch) | |
| tree | b7e573aeb48562dd567983eb6f2283e1cd3a0d0b /discord/utils.py | |
| parent | Fix `UnboundLocalError` for editing `public_updates_channel` (diff) | |
| download | discord.py-6b803acde4f6377b8ccad959350a61a3d524b619.tar.xz discord.py-6b803acde4f6377b8ccad959350a61a3d524b619.zip | |
[chore] Remove redundant imports
This also removes the historical patch for NullHandler implemented in bbf1c54, as it has been available since Python 3.1.
Diffstat (limited to 'discord/utils.py')
| -rw-r--r-- | discord/utils.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/discord/utils.py b/discord/utils.py index 56ac6699..fd24eaee 100644 --- a/discord/utils.py +++ b/discord/utils.py @@ -31,7 +31,6 @@ import unicodedata from base64 import b64encode from bisect import bisect_left import datetime -from email.utils import parsedate_to_datetime import functools from inspect import isawaitable as _isawaitable from operator import attrgetter @@ -40,7 +39,6 @@ import re import warnings from .errors import InvalidArgument -from .object import Object DISCORD_EPOCH = 1420070400000 MAX_ASYNCIO_SECONDS = 3456000 |