Skip to content

Commit

Permalink
fix deprecated typing.Callable function annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
mt7180 committed Mar 25, 2024
1 parent eb997e6 commit cb60280
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion frontend/utils/helpers.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
from typing import Callable, TypeVar
from typing import TypeVar
from collections.abc import Callable

F = TypeVar("F", bound=Callable[..., None])

Expand Down

0 comments on commit cb60280

Please sign in to comment.