Skip to content

Commit

Permalink
Merge pull request #371 from shunichironomura/Virtual-branch-1196433945
Browse files Browse the repository at this point in the history
fix: Ignore arg-type hint for function call in _run.py
  • Loading branch information
shunichironomura authored Oct 22, 2024
2 parents 4f68387 + ac779c8 commit 7822959
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion capsula/_run.py
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,7 @@ def _func_1() -> T:

def _func_2() -> T:
assert self._func is not None
return self._func(*args, **kwargs)
return self._func(*args, **kwargs) # type: ignore[arg-type]

func = _func_2

Expand Down

0 comments on commit 7822959

Please sign in to comment.