Skip to content

Commit eaba4b0

Browse files
committed
resolves #13 Missing Type Annotations
1 parent a240b86 commit eaba4b0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

adafruit_ssd1327.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,10 @@
5454
# pylint: disable=too-few-public-methods
5555
class SSD1327(displayio.Display):
5656
"""SSD1327 driver
57-
kwargs:
58-
param: height in pixels
59-
param: width in pixels
60-
param: optional rotation : 0 < rotation < 180 results in 90 degree rotation
57+
58+
:param int height: height in pixels
59+
:param int width: width in pixels
60+
:param int rotation: rotation in degrees 0 < rotation < 180 results in 90 degree rotation
6161
"""
6262

6363
def __init__(self, bus: displayio.I2CDisplay, **kwargs) -> None:

0 commit comments

Comments
 (0)