-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Closed
Description
Is your feature request related to a problem? Please describe.
Lines 512 to 514 in 9ae72e4
| class MONAIEnvVars: | |
| """ | |
| Environment variables used by MONAI. |
monai.utils.MONAIEnvVars is created to consolidate the relevant system environment variables.
this is a feature request to refactor the existing direct os.environ[key] calls to use this class intead.
example
MONAI/monai/apps/auto3dseg/bundle_gen.py
Line 47 in 9ae72e4
ALGO_HASH = os.environ.get("MONAI_ALGO_HASH", "e01d67a") MONAI/monai/transforms/inverse.py
Line 73 in 9ae72e4
tracing = os.environ.get("MONAI_TRACE_TRANSFORM", "1") != "0" Line 34 in 9ae72e4
cls.orig_value = os.environ.get("MONAI_DEBUG")