Skip to content

Commit 5c5d7f3

Browse files
committed
fix imports
1 parent d7b1a73 commit 5c5d7f3

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from src.automated_planner import AutomatedPlanner
1+
from jupyddl.automated_planner import AutomatedPlanner
22
import argparse
33
import os
44

tests/test_astar.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
from os import path
55

66
sys.path.append(path.dirname(path.dirname(path.abspath(__file__))))
7-
from src.automated_planner import AutomatedPlanner
8-
from src.a_star import AStarBestFirstSearch
7+
from jupyddl.automated_planner import AutomatedPlanner
8+
from jupyddl.a_star import AStarBestFirstSearch
99

1010

1111
def test_astar_init():

tests/test_automated_planner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from os import path
55

66
sys.path.append(path.dirname(path.dirname(path.abspath(__file__))))
7-
from src.automated_planner import AutomatedPlanner
7+
from jupyddl.automated_planner import AutomatedPlanner
88

99

1010
def test_parsing():

tests/test_heuristics.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
from os import path
55

66
sys.path.append(path.dirname(path.dirname(path.abspath(__file__))))
7-
from src.automated_planner import AutomatedPlanner
8-
import src.heuristics as hs
7+
from jupyddl.automated_planner import AutomatedPlanner
8+
import jupyddl.heuristics as hs
99

1010
"""
1111
Testing the heuristics in different situations

0 commit comments

Comments
 (0)