mirror of
https://github.com/bohd4nx/FragmentAPI.git
synced 2026-08-02 17:51:37 +00:00
refactor: reorganize imports across multiple files for consistency and clarity
This commit is contained in:
@@ -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,
|
||||
|
||||
@@ -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
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user