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 00619b5 commit 4149c04Copy full SHA for 4149c04
src/openstack_workload_generator/entities/helpers.py
@@ -69,7 +69,9 @@ def load_config(config_file: str):
69
70
if os.getenv("OPENSTACK_WORKLOAD_MANAGER_PROFILES", None):
71
potential_profile_file = str(
72
- Path(os.getenv("OPENSTACK_WORKLOAD_MANAGER_PROFILES"))
+ Path(
73
+ os.getenv("OPENSTACK_WORKLOAD_MANAGER_PROFILES", "NONE")
74
+ ) # satisfy type-check
75
/ Path(config_file)
76
)
77
LOGGER.info(
0 commit comments