From 901d14a6ad718e7bd123ec1c7fb330ef76cee394 Mon Sep 17 00:00:00 2001 From: Lengyue Date: Tue, 13 Dec 2022 20:06:22 -0500 Subject: [PATCH] fix import for test framework --- tests/test_framework.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/tests/test_framework.py b/tests/test_framework.py index eaed1c1..05ac81e 100644 --- a/tests/test_framework.py +++ b/tests/test_framework.py @@ -1,11 +1,3 @@ -import inspect -import os -import sys - -currentdir = os.path.dirname(os.path.abspath(inspect.getfile(inspect.currentframe()))) -parentdir = os.path.dirname(currentdir) -sys.path.insert(0, parentdir) - from gisim.agent import AttackOnlyAgent # noqa: E402 from gisim.classes.enums import GameStatus, PlayerID # noqa: E402 from gisim.game import Game # noqa: E402