fix: reorder import statements in conftest.py for better organization

This commit is contained in:
bohd4nx
2026-04-14 01:37:52 +03:00
parent 6b6ca37f10
commit d81b83ac91
+6
View File
@@ -3,6 +3,12 @@ import os
import pytest import pytest
import pyfragment.methods.giveaway_premium # noqa: F401
import pyfragment.methods.giveaway_stars # noqa: F401
import pyfragment.methods.purchase_premium # noqa: F401
import pyfragment.methods.purchase_stars # noqa: F401
import pyfragment.methods.recharge_ads # noqa: F401
import pyfragment.methods.topup_ton # noqa: F401
from pyfragment import FragmentClient from pyfragment import FragmentClient
from tests.shared import VALID_API_KEY, VALID_COOKIES, VALID_SEED from tests.shared import VALID_API_KEY, VALID_COOKIES, VALID_SEED