Skip to content

Commit

Permalink
MNT: Remove the unnecessary pyright in-line ignore. [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
Taher Chegini committed Feb 12, 2024
1 parent db00be6 commit 3a52f71
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pydaymet/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
from numba import jit, prange

ngjit = functools.partial(jit, nopython=True, nogil=True) # pyright: ignore[reportAssignmentType]
numba_config.THREADING_LAYER = "workqueue" # pyright: ignore[reportAttributeAccessIssue]
numba_config.THREADING_LAYER = "workqueue"
has_numba = True
except ImportError:
has_numba = False
Expand Down

0 comments on commit 3a52f71

Please sign in to comment.