Skip to content

Commit

Permalink
Fix type annotation (#88)
Browse files Browse the repository at this point in the history
  • Loading branch information
bieniu authored May 29, 2022
1 parent c9b079f commit 70f3f4c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions brother/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,9 @@ def __init__(

self._legacy = False

self.firmware = None
self.firmware: str | None = None
self.model: str | None = None
self.serial = None
self.serial: str
self._host = host
self._port = port
self._last_uptime: datetime | None = None
Expand Down

0 comments on commit 70f3f4c

Please sign in to comment.