mirror of
https://github.com/KevinMidboe/python-gpiozero.git
synced 2025-10-29 09:40:36 +00:00
17 lines
232 B
Python
17 lines
232 B
Python
from __future__ import (
|
|
unicode_literals,
|
|
absolute_import,
|
|
print_function,
|
|
division,
|
|
)
|
|
str = type('')
|
|
|
|
|
|
import pytest
|
|
|
|
from gpiozero.pins.mock import MockPin
|
|
from gpiozero import *
|
|
|
|
|
|
# TODO input_devices tests!
|