refactor imports for linter

This commit is contained in:
szelenka 2025-04-16 10:15:02 -04:00
parent 6fc310f56d
commit ef6805f318
2 changed files with 9 additions and 6 deletions

View file

@ -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:

View file

@ -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
)