Skip to content

Commit 39a50a7

Browse files
committed
fix: fix init order
1 parent 17b726d commit 39a50a7

1 file changed

Lines changed: 3 additions & 5 deletions

File tree

backend/src/conf/__init__.py

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
1-
import sys
21

3-
from .search_provider import SEARCH_CONFIG
42
from version import APP_VERSION
53

6-
PLATFORM = sys.platform
7-
4+
from .config import get_program_config
5+
from .search_provider import SEARCH_CONFIG
86

97
__all__ = [
108
"SEARCH_CONFIG",
11-
"PLATFORM",
9+
"get_program_config",
1210
"APP_VERSION",
1311
]

0 commit comments

Comments
 (0)