Skip to content

Commit 6b2db53

Browse files
committed
deplacement du buidcontext vers Core.engine
1 parent 3d49ad7 commit 6b2db53

6 files changed

Lines changed: 5 additions & 5 deletions

File tree

Core/Compiler/engine_runner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535

3636
# BuildContext lives in engine_sdk; imported here so callers of this module
3737
# only need to import from Core.Compiler.
38-
from engine_sdk.build_context import BuildContext
38+
from Core.engine.build_context import BuildContext
3939

4040

4141
class EngineRunnerError(RuntimeError):

Core/Compiler/mainprocess.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
resolve_engine_command,
5656
EngineRunnerError,
5757
)
58-
from engine_sdk.build_context import BuildContext
58+
from Core.engine.build_context import BuildContext
5959

6060

6161
class ProcessState(Enum):

Core/Locking/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
import yaml
1717
from Core.Configs import normalize_ark_config
18-
from engine_sdk.build_context import BuildContext
18+
from Core.engine.build_context import BuildContext
1919

2020

2121
class LockingError(RuntimeError):

Core/engine/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
from typing import TYPE_CHECKING, Optional
1919

2020
if TYPE_CHECKING:
21-
from engine_sdk.build_context import BuildContext
21+
from Core.engine.build_context import BuildContext
2222

2323

2424
def log_i18n_level(gui, level: str, fr: str, en: str) -> None:

engine_sdk/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
# Re-export the base interface used by the host
1919
from .base import CompilerEngine
20-
from .build_context import BuildContext
20+
from ..Core.engine.build_context import BuildContext
2121
from .utils import (
2222
atomic_write_text,
2323
clamp_text,

0 commit comments

Comments
 (0)