diff options
| author | Hornwitser <[email protected]> | 2018-08-01 15:24:33 +0200 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2018-11-24 22:17:58 -0500 |
| commit | efb4ff850ea476d2aabc8ab4069a6d52ad602f42 (patch) | |
| tree | 25d705c284c37a15d72f2419e9f6f1010a2f9e08 /discord/channel.py | |
| parent | [commands] Remove duplicated quote entries (diff) | |
| download | discord.py-efb4ff850ea476d2aabc8ab4069a6d52ad602f42.tar.xz discord.py-efb4ff850ea476d2aabc8ab4069a6d52ad602f42.zip | |
[lint] Fix import order
Reorder imports to be consistenly grouped by standard library, third
party library, and local modules in that order thoughout the library.
Diffstat (limited to 'discord/channel.py')
| -rw-r--r-- | discord/channel.py | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/discord/channel.py b/discord/channel.py index 30e2369c..7cb007a3 100644 --- a/discord/channel.py +++ b/discord/channel.py @@ -24,6 +24,10 @@ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. """ +import time +import asyncio + +import discord.abc from .permissions import Permissions from .enums import ChannelType, try_enum from .mixins import Hashable @@ -31,11 +35,6 @@ from . import utils from .errors import ClientException, NoMoreItems from .webhook import Webhook -import discord.abc - -import time -import asyncio - __all__ = ['TextChannel', 'VoiceChannel', 'DMChannel', 'CategoryChannel', 'GroupChannel', '_channel_factory'] async def _single_delete_strategy(messages): |