Skip to content

Commit a069641

Browse files
committed
resolves #13 Missing Type Annotations
1 parent d4d231c commit a069641

File tree

1 file changed

+5
-11
lines changed

1 file changed

+5
-11
lines changed

adafruit_ssd1327.py

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -54,19 +54,13 @@
5454

5555
# pylint: disable=too-few-public-methods
5656
class SSD1327(displayio.Display):
57-
r"""SSD1327 driver
57+
"""SSD1327 driver
5858
5959
:param ~displayio.I2CDisplay bus: The data bus the display is on
60-
:param \**kwargs:
61-
See below
62-
63-
:Keyword Arguments:
64-
* *width* (``int``) --
65-
Display width
66-
* *height* (``int``) --
67-
Display height
68-
* *rotation* (``int``) --
69-
Display rotation
60+
:param int height: (keyword-only) The height of the screen
61+
:param int width: (keyword-only) The width of the screen
62+
:param int rotation: (keyword-only) The rotation.orientation of the
63+
screen, in degrees
7064
"""
7165

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

0 commit comments

Comments
 (0)