We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91e3cb4 commit 7cce369Copy full SHA for 7cce369
causal_testing/main.py
@@ -59,7 +59,7 @@ def __init__(
59
output_path: Union[str, Path],
60
):
61
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]
+ self.data_paths = [Path(p) for p in data_paths]
63
self.test_config_path = Path(test_config_path)
64
self.output_path = Path(output_path)
65
0 commit comments