fix(imports): use concrete modules for internal symbols (#6427)

This commit is contained in:
InfinityPacer
2026-08-23 21:28:37 +08:00
committed by GitHub
parent 7d10483961
commit f64030a074
7 changed files with 7 additions and 10 deletions
+1 -2
View File
@@ -15,8 +15,7 @@ from app.runtime.config import global_vars
settings = RuntimeSettingsCompat()
from app.runtime.log import logger
from app.modules.filemanager import StorageBase
from app.modules.filemanager.storages import transfer_process
from app.modules.filemanager.storages import StorageBase, transfer_process
from app.schemas.exception import StorageQueryError
from app.schemas.types import StorageSchema
from app.adapters.network.http import RequestUtils
+1 -2
View File
@@ -19,8 +19,7 @@ from app.runtime.config import global_vars
settings = RuntimeSettingsCompat()
from app.runtime.log import logger
from app.modules.filemanager import StorageBase
from app.modules.filemanager.storages import transfer_process
from app.modules.filemanager.storages import StorageBase, transfer_process
from app.schemas.exception import StorageQueryError
from app.schemas.types import StorageSchema
from app.foundation.singleton import WeakSingleton
+1 -2
View File
@@ -19,8 +19,7 @@ from app.runtime.config import global_vars
settings = RuntimeSettingsCompat()
from app.runtime.log import logger
from app.modules.filemanager import StorageBase
from app.modules.filemanager.storages import transfer_process
from app.modules.filemanager.storages import StorageBase, transfer_process
from app.schemas.exception import StorageQueryError
from app.schemas.types import StorageSchema
from app.foundation.singleton import WeakSingleton