Dar4devil's picture
Build incident commander OpenEnv arena
015ca5f
Raw
History Blame Contribute Delete
271 Bytes
from __future__ import annotations
from pathlib import Path
import sys
ROOT = Path(__file__).resolve().parents[1]
if str(ROOT) not in sys.path:
sys.path.insert(0, str(ROOT))
from incident_commander_env.training import main
if __name__ == "__main__":
main()