Skip to content

Commit

Permalink
Fix typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
vnmabus committed Mar 11, 2024
1 parent fb6502f commit cd7e73e
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions skfda/typing/_numpy.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,10 @@
import numpy as np

try: # noqa: WPS113
from numpy.typing import (
ArrayLike as ArrayLike,
DTypeLike as DTypeLike,
)
from numpy.typing import ArrayLike as ArrayLike, DTypeLike as DTypeLike
except ImportError:
ArrayLike = np.ndarray # type:ignore[misc] # noqa: WPS440
DTypeLIke = np.dtype # type:ignore[misc]
DTypeLike = np.dtype # type:ignore[misc]

Check warning on line 11 in skfda/typing/_numpy.py

View check run for this annotation

Codecov / codecov/patch

skfda/typing/_numpy.py#L11

Added line #L11 was not covered by tests

try: # noqa: WPS229
from numpy.typing import NDArray
Expand Down

0 comments on commit cd7e73e

Please sign in to comment.