12 lines
430 B
Python
12 lines
430 B
Python
|
|
"""ExecutionContext compatibility shim.
|
||
|
|
|
||
|
|
To avoid having two separately-defined ExecutionContext classes in the
|
||
|
|
codebase, this module re-exports the single canonical definition from
|
||
|
|
``workflow_executor.py``. Importing ``ExecutionContext`` from here keeps
|
||
|
|
older imports working while centralizing the implementation.
|
||
|
|
"""
|
||
|
|
|
||
|
|
from .workflow_executor import ExecutionContext # re-export canonical class
|
||
|
|
|
||
|
|
__all__ = ["ExecutionContext"]
|