Skip to content

Commit

Permalink
🚨 Fix the Mypy error
Browse files Browse the repository at this point in the history
  • Loading branch information
eigenein committed May 11, 2023
1 parent 2ad78ec commit 38c019d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/message/test_dataclass.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def test_simple_message() -> None:
@dataclass
class Message(BaseMessage):
a: Annotated[int, Field(1)] = 0
b: Annotated[uint, Field(2)] = 0
b: Annotated[uint, Field(2)] = uint(0)

message = Message(a=150, b=uint(42))
bytes_ = b"\x08\x96\x01\x10\x2A"
Expand Down

0 comments on commit 38c019d

Please sign in to comment.