Skip to content

Commit

Permalink
Merge pull request #4 from sushi-chaaaan/fix/type-checking
Browse files Browse the repository at this point in the history
fix annotation syntax
  • Loading branch information
sushichan044 authored Oct 6, 2023
2 parents ead3b42 + 9e66532 commit a97eda6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ductile/internal/view.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ def __init__(
self,
*,
timeout: float | None = 180,
on_error: "ViewErrorHandler" | None = None,
on_timeout: "ViewTimeoutHandler" | None = None,
on_error: "ViewErrorHandler | None" = None,
on_timeout: "ViewTimeoutHandler | None" = None,
) -> None:
super().__init__(timeout=timeout)
self.__on_error = on_error
Expand Down

0 comments on commit a97eda6

Please sign in to comment.