refactor imports for linter
This commit is contained in:
parent
6fc310f56d
commit
ef6805f318
2 changed files with 9 additions and 6 deletions
|
|
@ -29,9 +29,7 @@ __version__ = "0.0.0+auto.0"
|
|||
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_LED_Animation.git"
|
||||
|
||||
from adafruit_led_animation import MS_PER_SECOND, monotonic_ms
|
||||
from adafruit_led_animation.helper import (
|
||||
pixel_object_show, pixel_object_auto_write_set
|
||||
)
|
||||
from adafruit_led_animation.helper import pixel_object_show, pixel_object_auto_write_set
|
||||
|
||||
|
||||
class Animation:
|
||||
|
|
|
|||
|
|
@ -27,9 +27,14 @@ Implementation Notes
|
|||
from micropython import const
|
||||
|
||||
from .helper import (
|
||||
PixelMap, horizontal_strip_gridmap, vertical_strip_gridmap,
|
||||
pixel_object_show, pixel_object_auto_write, pixel_object_auto_write_set,
|
||||
pixel_object_brightness, pixel_object_brightness_set
|
||||
PixelMap,
|
||||
horizontal_strip_gridmap,
|
||||
vertical_strip_gridmap,
|
||||
pixel_object_show,
|
||||
pixel_object_auto_write,
|
||||
pixel_object_auto_write_set,
|
||||
pixel_object_brightness,
|
||||
pixel_object_brightness_set
|
||||
)
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue