Optimize import statements and remove unused imports across multiple files

This commit focuses on cleaning up import statements by:
- Removing unused imports
- Organizing import order
- Removing redundant imports
- Ensuring consistent import style across different modules
This commit is contained in:
Zakhar Izmaylov
2025-01-29 07:15:20 +03:00
parent 5f2b40b2d2
commit 8ce7ee0ce0
21 changed files with 40 additions and 1483 deletions
+1 -1
View File
@@ -9,7 +9,7 @@ from ping3 import ping
from bot import bot
from config import ADMIN_ID, DATABASE_URL, PING_TIME
from database import create_server, check_unique_server_name, get_servers
from database import check_unique_server_name, create_server, get_servers
from logger import logger
try: