Skip to content

Commit ef6805f

Browse files
refactor imports for linter
1 parent 6fc310f commit ef6805f

File tree

2 files changed

+9
-6
lines changed

2 files changed

+9
-6
lines changed

adafruit_led_animation/animation/__init__.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,7 @@
2929
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_LED_Animation.git"
3030

3131
from adafruit_led_animation import MS_PER_SECOND, monotonic_ms
32-
from adafruit_led_animation.helper import (
33-
pixel_object_show, pixel_object_auto_write_set
34-
)
32+
from adafruit_led_animation.helper import pixel_object_show, pixel_object_auto_write_set
3533

3634

3735
class Animation:

adafruit_led_animation/grid.py

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,14 @@
2727
from micropython import const
2828

2929
from .helper import (
30-
PixelMap, horizontal_strip_gridmap, vertical_strip_gridmap,
31-
pixel_object_show, pixel_object_auto_write, pixel_object_auto_write_set,
32-
pixel_object_brightness, pixel_object_brightness_set
30+
PixelMap,
31+
horizontal_strip_gridmap,
32+
vertical_strip_gridmap,
33+
pixel_object_show,
34+
pixel_object_auto_write,
35+
pixel_object_auto_write_set,
36+
pixel_object_brightness,
37+
pixel_object_brightness_set
3338
)
3439

3540

0 commit comments

Comments
 (0)