mirror of
https://github.com/imayushsaini/Bombsquad-Ballistica-Modded-Server.git
synced 2025-10-20 00:00:39 +00:00
fixed bombsquad_server import order
This commit is contained in:
parent
638e38173b
commit
78638d0ca6
1 changed files with 4 additions and 4 deletions
|
|
@ -4,10 +4,6 @@
|
||||||
# pylint: disable=too-many-lines
|
# pylint: disable=too-many-lines
|
||||||
"""BallisticaKit server manager."""
|
"""BallisticaKit server manager."""
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
from efro.terminal import Clr
|
|
||||||
from efro.error import CleanError
|
|
||||||
from efro.dataclassio import dataclass_from_dict, dataclass_validate
|
|
||||||
from bacommon.servermanager import ServerConfig, StartServerModeCommand
|
|
||||||
|
|
||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
|
|
@ -29,6 +25,10 @@ sys.path += [
|
||||||
str(Path(Path(__file__).parent, 'dist', 'ba_data', 'python-site-packages')),
|
str(Path(Path(__file__).parent, 'dist', 'ba_data', 'python-site-packages')),
|
||||||
]
|
]
|
||||||
|
|
||||||
|
from efro.terminal import Clr
|
||||||
|
from efro.error import CleanError
|
||||||
|
from efro.dataclassio import dataclass_from_dict, dataclass_validate
|
||||||
|
from bacommon.servermanager import ServerConfig, StartServerModeCommand
|
||||||
|
|
||||||
if TYPE_CHECKING:
|
if TYPE_CHECKING:
|
||||||
from types import FrameType
|
from types import FrameType
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue