Skip to content

Commit d7d1e73

Browse files
authored
make black.py happy
black check should succeed now.
1 parent 1b8e819 commit d7d1e73

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

adafruit_pybadger/pybadger_base.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -366,7 +366,12 @@ def _create_label_group(
366366
font = load_font(font, text)
367367

368368
create_label_group = displayio.Group(scale=scale)
369-
create_label = self._label.Label(font, text=text, line_spacing=line_spacing, background_color=background_color)
369+
create_label = self._label.Label(
370+
font,
371+
text=text,
372+
line_spacing=line_spacing,
373+
background_color=background_color,
374+
)
370375
_, _, width, _ = create_label.bounding_box
371376
create_label.x = (self.display.width // (width_adjustment * scale)) - width // 2
372377
create_label.y = int(self.display.height * (height_adjustment / scale))

0 commit comments

Comments
 (0)