mirror of
https://github.com/MiyooCFW/buildroot.git
synced 2025-09-27 22:24:19 +03:00
7 lines
204 B
Python
7 lines
204 B
Python
try:
|
|
import RPi.GPIO # noqa
|
|
except RuntimeError as e:
|
|
assert(str(e) == 'This module can only be run on a Raspberry Pi!')
|
|
else:
|
|
raise RuntimeError('Import succeeded when it should not have!')
|