Skip to content

Commit 7cce369

Browse files
committed
Reverted
1 parent 91e3cb4 commit 7cce369

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

causal_testing/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ def __init__(
5959
output_path: Union[str, Path],
6060
):
6161
self.dag_path = Path(dag_path)
62-
self.data_paths = [Path(data_paths)] if isinstance(data_paths, str) else [Path(p) for p in data_paths]
62+
self.data_paths = [Path(p) for p in data_paths]
6363
self.test_config_path = Path(test_config_path)
6464
self.output_path = Path(output_path)
6565

0 commit comments

Comments
 (0)