Skip to content

Commit

Permalink
Ignore type check for numba decorator
Browse files Browse the repository at this point in the history
  • Loading branch information
jhonykaesemodel committed Jul 25, 2021
1 parent 9178eed commit c27dab0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion argoverse/evaluation/stereo/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ def accumulate_stereo_metrics(abs_error_thresholds: List[int]) -> pd.DataFrame:
return pd.DataFrame([[0] * num_fields], columns=columns)


@njit(nogil=True)
@njit(nogil=True) # type: ignore
def interpolate_disparity(disparity: np.ndarray) -> np.ndarray:
"""Interpolate disparity image to inpaint holes.
Expand Down

0 comments on commit c27dab0

Please sign in to comment.