refactor: reorganize imports across multiple files for consistency and clarity

This commit is contained in:
bohd4nx
2026-03-05 06:36:27 +02:00
parent 7f3c3ea1c3
commit 2cdc102a74
7 changed files with 29 additions and 15 deletions
+8 -3
View File
@@ -4,9 +4,14 @@ import time
import httpx
from app.core import load_cookies
from app.core.constants import BASE_HEADERS, DEVICE, PREMIUM_PAGE
from app.core.exceptions import FragmentError, UserNotFoundError
from app.core import (
BASE_HEADERS,
DEVICE,
PREMIUM_PAGE,
FragmentError,
UserNotFoundError,
load_cookies,
)
from app.utils import (
execute_transaction_request,
get_account_info,
+8 -3
View File
@@ -4,9 +4,14 @@ import time
import httpx
from app.core import load_cookies
from app.core.constants import BASE_HEADERS, DEVICE, STARS_PAGE
from app.core.exceptions import FragmentError, UserNotFoundError
from app.core import (
BASE_HEADERS,
DEVICE,
STARS_PAGE,
FragmentError,
UserNotFoundError,
load_cookies,
)
from app.utils import (
execute_transaction_request,
get_account_info,
+1 -3
View File
@@ -4,9 +4,7 @@ import time
import httpx
from app.core import load_cookies
from app.core.constants import ADS_PAGE, BASE_HEADERS, DEVICE
from app.core.exceptions import FragmentError, UserNotFoundError
from app.core import ADS_PAGE, BASE_HEADERS, DEVICE, FragmentError, UserNotFoundError, load_cookies
from app.utils import (
execute_transaction_request,
get_account_info,