Skip to content

Commit

Permalink
Fix mypy errors
Browse files Browse the repository at this point in the history
  • Loading branch information
JonathanPlasse authored and Zac-HD committed Mar 11, 2024
1 parent ecb4e14 commit 465a70f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
elif TYPE_CHECKING:
from typing_extensions import TypeVar # type: ignore[assignment]

Ex = TypeVar("Ex", covariant=True, default=Any)
Ex = TypeVar("Ex", covariant=True, default=Any) # type: ignore[call-arg,misc]
else:
Ex = TypeVar("Ex", covariant=True)

Expand Down

0 comments on commit 465a70f

Please sign in to comment.