Skip to content

Commit 4d108c9

Browse files
Update transmission_direction.py
1 parent 4d1bcfc commit 4d108c9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

uds/transmission_attributes/transmission_direction.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
class TransmissionDirection(StrEnum, ValidatedEnum):
1212
"""Direction of a communication."""
1313

14-
RECEIVED = "Rx" # noqa: F841
14+
RECEIVED: "TransmissionDirection" = "Rx" # type: ignore # noqa: F841
1515
"""Incoming transmission from the perspective of the code."""
16-
TRANSMITTED = "Tx" # noqa: F841
16+
TRANSMITTED: "TransmissionDirection" = "Tx" # type: ignore # noqa: F841
1717
"""Outgoing transmission from the perspective of the code."""

0 commit comments

Comments
 (0)