File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 48
48
49
49
#pylint: disable=wrong-import-position
50
50
sys .path .insert (0 , ".frozen" ) # Prefer frozen modules over local.
51
- from adafruit_crickit .terminals import (NEOPIXEL , _SIGNAL_SET ,
52
- _MOTOR1_SET , _MOTOR2_SET , _MOTOR_SET ,
53
- _DRIVE_SET , _PWM_SET , _TOUCH_SET )
54
51
55
52
from adafruit_seesaw .seesaw import Seesaw
56
53
# This is very common so import it in advance.
57
54
# Takes less memory to import PWMOut once than have multiple import statements.
58
55
# Each import statement is about 60 bytes.
59
56
from adafruit_seesaw .pwmout import PWMOut
60
57
58
+ from adafruit_crickit .terminals import (NEOPIXEL , _SIGNAL_SET ,
59
+ _MOTOR1_SET , _MOTOR2_SET , _MOTOR_SET ,
60
+ _DRIVE_SET , _PWM_SET , _TOUCH_SET )
61
+
61
62
__version__ = "0.0.0-auto.0"
62
63
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_Crickit.git"
63
64
Original file line number Diff line number Diff line change 27
27
'CircuitPython' : ('https://circuitpython.readthedocs.io/en/latest/' , None )}
28
28
29
29
# Libraries we depend on but don't need for generating docs.
30
- autodoc_mock_imports = ["board" , "busio" , "adafruit_seesaw" , "micropython" ]
30
+ autodoc_mock_imports = []
31
31
32
32
# Add any paths that contain templates here, relative to this directory.
33
33
templates_path = ['_templates' ]
You can’t perform that action at this time.
0 commit comments