Sorted imports and removed unused ones

This commit is contained in:
2023-04-19 14:23:41 +02:00
parent 75c1889477
commit fb3e291d77
6 changed files with 25 additions and 25 deletions

View File

@@ -1,26 +1,27 @@
from gzip import open as gzipopen
from datetime import datetime
from os import listdir, makedirs, remove, stat, path
from gzip import open as gzipopen
from os import listdir, makedirs, path, remove, stat
from shutil import copyfileobj
from typing import Any, Literal, Union
from discord import (
utils,
ApplicationContext,
CategoryChannel,
Client,
Embed,
Guild,
Member,
Message,
PermissionOverwrite,
TextChannel,
VoiceChannel,
PermissionOverwrite,
Guild,
CategoryChannel,
Member,
Client,
ApplicationContext,
Message,
utils,
)
try:
from ujson import loads, dumps
from ujson import dumps, loads
except ImportError:
from json import loads, dumps
from json import dumps, loads
# path = Path(__file__).resolve().parent