micropython: add micropython component
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
"""
|
||||
categories: Modules,os
|
||||
description: ``getenv`` only allows one argument
|
||||
cause: Unknown
|
||||
workaround: Test that the return value is ``None``
|
||||
"""
|
||||
import os
|
||||
|
||||
try:
|
||||
print(os.getenv("NEW_VARIABLE", "DEFAULT"))
|
||||
except TypeError:
|
||||
print("should not get here")
|
||||
# this assumes NEW_VARIABLE is never an empty variable
|
||||
print(os.getenv("NEW_VARIABLE") or "DEFAULT")
|
Reference in New Issue
Block a user