We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ded093b commit 5aa49f9Copy full SHA for 5aa49f9
learning_loop_node/globals.py
@@ -1,7 +1,9 @@
1
+import os
2
+
3
4
class Globals():
5
def __init__(self) -> None:
- self.data_folder: str = '/data'
6
+ self.data_folder: str = os.getenv('DATA_FOLDER', '/data')
7
self.detector_port: int = 5004 # NOTE used for tests
8
9
pyproject.toml
@@ -1,6 +1,6 @@
[project]
name = "learning_loop_node"
-version = "0.18.0"
+version = "0.18.6"
description = "Python Library for Nodes which connect to the Zauberzeug Learning Loop"
authors = [{ name = "Zauberzeug GmbH", email = "info@zauberzeug.com" }]
license = { text = "MIT" }
0 commit comments