We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e5eaab4 commit a23748fCopy full SHA for a23748f
1 file changed
src/datapilot/cli/main.py
@@ -18,7 +18,7 @@ def load_config_from_file():
18
return {}
19
20
try:
21
- with Path.open(config_path) as f:
+ with config_path.open() as f:
22
config = json.load(f)
23
return config
24
except (OSError, json.JSONDecodeError) as e:
0 commit comments