We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d4d231c commit a069641Copy full SHA for a069641
adafruit_ssd1327.py
@@ -54,19 +54,13 @@
54
55
# pylint: disable=too-few-public-methods
56
class SSD1327(displayio.Display):
57
- r"""SSD1327 driver
+ """SSD1327 driver
58
59
: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
+ :param int height: (keyword-only) The height of the screen
+ :param int width: (keyword-only) The width of the screen
+ :param int rotation: (keyword-only) The rotation.orientation of the
+ screen, in degrees
70
"""
71
72
def __init__(self, bus: displayio.I2CDisplay, **kwargs) -> None:
0 commit comments