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 4d1bcfc commit 4d108c9Copy full SHA for 4d108c9
uds/transmission_attributes/transmission_direction.py
@@ -11,7 +11,7 @@
11
class TransmissionDirection(StrEnum, ValidatedEnum):
12
"""Direction of a communication."""
13
14
- RECEIVED = "Rx" # noqa: F841
+ RECEIVED: "TransmissionDirection" = "Rx" # type: ignore # noqa: F841
15
"""Incoming transmission from the perspective of the code."""
16
- TRANSMITTED = "Tx" # noqa: F841
+ TRANSMITTED: "TransmissionDirection" = "Tx" # type: ignore # noqa: F841
17
"""Outgoing transmission from the perspective of the code."""
0 commit comments