Skip to content

Commit ca3e623

Browse files
authored
Disabling albumentation update check (#333)
1 parent 467bafb commit ca3e623

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

luxonis_ml/__init__.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
__version__ = "0.7.0"
22

3+
import os
4+
35
from .utils.environ import environ
46
from .utils.logging import setup_logging
57

68
if not environ.LUXONISML_DISABLE_SETUP_LOGGING:
79
setup_logging()
10+
11+
if "NO_ALBUMENTATIONS_UPDATE" not in os.environ:
12+
os.environ["NO_ALBUMENTATIONS_UPDATE"] = "1"

0 commit comments

Comments
 (0)