Skip to content

Commit

Permalink
type hint
Browse files Browse the repository at this point in the history
  • Loading branch information
alexrudd2 committed Jul 2, 2024
1 parent f016afc commit 0c9b500
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clickplc/driver.py
Original file line number Diff line number Diff line change
Expand Up @@ -475,7 +475,7 @@ async def _get_sd(self, start: int, end: int) -> dict | int:
@overload
async def _get_txt(self, start: int, end: None) -> str: ...
@overload
async def _get_txt(self, start: int, end: int) -> dict: ...
async def _get_txt(self, start: int, end: int) -> dict[str, str]: ...
async def _get_txt(self, start, end):
"""Read txt registers. Called by `get`.
Expand Down

0 comments on commit 0c9b500

Please sign in to comment.