mirror of
https://github.com/pybricks/pybricks-api.git
synced 2026-07-28 04:07:46 +00:00
Observations:
* Type annotations tend to be verbose, for example:
blink(color1: typing.Union[pblight.Color, pblight.RGB, NoneType], color2: typing.Union[pblight.Color, pblight.RGB, NoneType], pattern: pblight.Pattern) → None
* There seems to be a bug with .. autodata::
8 lines
87 B
Python
8 lines
87 B
Python
"""Private base class for ports"""
|
|
|
|
from enum import Enum
|
|
|
|
|
|
class Port(Enum):
|
|
pass
|