config: ignore unused import

These are not used by classes in the docs, but they are used by Sphinx.

Also, this will be used to let autocomplete know that these modules contain a Motor class.
This commit is contained in:
Laurens Valk
2020-01-28 18:03:18 +01:00
parent 9a3d4f88b6
commit c55556a598
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
"""LEGO® MINDSTORMS® EV3 motors and sensors."""
from .parameters import Direction
from .builtins import Motor
from .builtins import Motor # noqa E402
class TouchSensor():
+1 -1
View File
@@ -1,7 +1,7 @@
"""LEGO® Powered Up motor, sensors, and lights."""
from .builtins import KeyPad, Accelerometer, ColorLight
from .builtins import Motor
from .builtins import Motor # noqa E402
class RemoteControl():