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