Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions __init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,13 @@
evaluator: Detailed evaluation engine
"""

import os
import sys

_PACKAGE_DIR = os.path.abspath(os.path.dirname(__file__))
if _PACKAGE_DIR not in sys.path:
sys.path.insert(0, _PACKAGE_DIR)

from core_directive import (
ActionResult,
CoreDirective,
Expand Down
Loading