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 2126671 commit b9f465dCopy full SHA for b9f465d
openeo_driver/_version.py
@@ -1 +1 @@
1
-__version__ = "0.58.1a1"
+__version__ = "0.58.2a1"
openeo_driver/config/load.py
@@ -85,7 +85,7 @@ def _default_config(self) -> ContextManager[Path]:
85
def _load(self) -> OpenEoBackendConfig:
86
"""Load the config from config file."""
87
with self._default_config() as default_config:
88
- config_path = os.environ.get(self.OPENEO_BACKEND_CONFIG, default_config)
+ config_path = os.environ.get(self.OPENEO_BACKEND_CONFIG) or default_config
89
config = load_from_py_file(path=config_path, variable="config", expected_class=self.expected_class)
90
if hasattr(config, "id"):
91
_log.debug(f"Loaded config {config.id=}")
0 commit comments