Skip to content

Commit

Permalink
chore: fix type ignores due to mypy update
Browse files Browse the repository at this point in the history
  • Loading branch information
elmomoilanen committed Feb 24, 2024
1 parent 70fece7 commit 7659274
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion sampdist/sampling.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from typing import Any, Optional, Union, Callable

import numpy as np
from scipy.stats import norm # type: ignore[import]
from scipy.stats import norm # type: ignore[import-untyped]

from .errors import StatisticError, BcaError
from .plotting import Plotting
Expand Down
2 changes: 1 addition & 1 deletion sampdist/statistics.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
from typing import Any, Callable
import numpy as np

from scipy.stats import ( # type: ignore[import]
from scipy.stats import ( # type: ignore[import-untyped]
hmean,
trim_mean,
skew as scipy_skew,
Expand Down

0 comments on commit 7659274

Please sign in to comment.