We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bcc783e commit 287b234Copy full SHA for 287b234
src/super_gradients/common/environment/env_variables.py
@@ -48,7 +48,7 @@ def HYDRA_FULL_ERROR(self, value: str):
48
49
@property
50
def SUPER_GRADIENTS_LOG_DIR(self) -> str:
51
- return os.getenv("SUPER_GRADIENTS_LOG_DIR", default=f"{Path.home()}/sg_logs")
+ return os.getenv("SUPER_GRADIENTS_LOG_DIR", default=str(Path.home()/"sg_logs"))
52
53
54
env_variables = EnvironmentVariables()
0 commit comments