Skip to content

Commit f855e20

Browse files
committed
Fix path in PyAlgoAllPairsCflrToolRunner
1 parent dd8e45e commit f855e20

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cfpq_eval/runners/py_algo_all_pairs_cflr_tool_runner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
class PyAlgoAllPairsCflrToolRunner(AbstractAllPairsCflrToolRunner):
1212
@property
1313
def base_command(self) -> Optional[str]:
14-
return ("python3 -m cli.run_all_pairs_cflr "
14+
return ("python3 -m cfpq_cli.run_all_pairs_cflr "
1515
f"{self.algo_settings} {self.graph_path} {self.grammar_path}")
1616

1717
def parse_results(self, process: subprocess.CompletedProcess[str]) -> CflrToolRunResult:

0 commit comments

Comments
 (0)