Skip to content

Commit

Permalink
Removed unused type ignore
Browse files Browse the repository at this point in the history
  • Loading branch information
kalaspuff committed Feb 14, 2022
1 parent db3d8ec commit f2734bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cure/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def decorate(func: Callable, caller: Callable) -> Callable:
and inspect.ismethod(func)
):
bound_arg = getattr(func, "__self__")
func = func.__func__ # type: ignore
func = func.__func__

if (
not callable(func)
Expand Down

0 comments on commit f2734bf

Please sign in to comment.