Skip to content

Commit 6f50cc2

Browse files
committed
fix typo
1 parent 0c9732b commit 6f50cc2

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

jupyddl/data_analyst.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ def __gather_data_astar(
5757
self, domain_path="", problem_path="", heuristic_key="goal_count"
5858
):
5959
has_multiple_files_tested = True
60-
if not domain_path or not problem_path::
60+
if not domain_path or not problem_path:
6161
has_multiple_files_tested = False
6262
metrics = dict()
6363
for problem, domain in self.__get_all_pddl_from_data():
@@ -149,7 +149,7 @@ def plot_bfs(self, domain="", problem=""):
149149

150150
def __gather_data_dfs(self, domain_path="", problem_path=""):
151151
has_multiple_files_tested = True
152-
if not domain_path or not problem_path::
152+
if not domain_path or not problem_path:
153153
has_multiple_files_tested = False
154154
metrics = dict()
155155
for problem, domain in self.__get_all_pddl_from_data():
@@ -187,7 +187,7 @@ def plot_dfs(self, problem="", domain=""):
187187

188188
def __gather_data_dijkstra(self, domain_path="", problem_path=""):
189189
has_multiple_files_tested = True
190-
if not domain_path or not problem_path::
190+
if not domain_path or not problem_path:
191191
has_multiple_files_tested = False
192192
metrics = dict()
193193
for problem, domain in self.__get_all_pddl_from_data():

0 commit comments

Comments
 (0)