Skip to content

Commit 232ef1c

Browse files
committed
fix unset
1 parent f93f0f9 commit 232ef1c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

iohub/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616

1717
_level = os.environ.get("IOHUB_LOG_LEVEL", logging.INFO)
18-
if _level.isdigit():
18+
if str(_level).isdigit():
1919
_level = int(_level)
2020

2121
logging.basicConfig()

0 commit comments

Comments
 (0)