1
0
mirror of https://github.com/cmur2/python-bme680.git synced 2024-12-22 22:54:29 +01:00

added check on constants.__dict__ for micropython support (#18)

* added check on constants.__dict__ for micropython support
This commit is contained in:
Giampiero Baggiani 2018-12-10 10:55:07 +01:00 committed by Philip Howard
parent e97c5f9241
commit e827e5d622

View File

@ -10,10 +10,11 @@ __version__ = '1.0.5'
# Export constants to global namespace # Export constants to global namespace
# so end-users can "from BME680 import NAME" # so end-users can "from BME680 import NAME"
for key in constants.__dict__: if hasattr(constants, '__dict__'):
value = constants.__dict__[key] for key in constants.__dict__:
if key not in globals(): value = constants.__dict__[key]
globals()[key] = value if key not in globals():
globals()[key] = value
class BME680(BME680Data): class BME680(BME680Data):