Skip to content

Commit 6272c21

Browse files
committed
Add Missing Type Annotations
1 parent 254544a commit 6272c21

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

adafruit_displayio_ssd1305.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,7 @@ class SSD1305(displayio.Display):
7171
One of (0, 90, 180, 270)
7272
"""
7373

74-
def __init__(
75-
self, bus: Union[displayio.Fourwire, I2C], **kwargs
76-
) -> None:
74+
def __init__(self, bus: Union[displayio.Fourwire, I2C], **kwargs) -> None:
7775
colstart = 0
7876
# Patch the init sequence for 32 pixel high displays.
7977
init_sequence = bytearray(_INIT_SEQUENCE)

0 commit comments

Comments
 (0)