-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
dfea975
commit 4373fe5
Showing
1 changed file
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
# flake8: noqa | ||
from typing import Any, Union, TypeVar | ||
|
||
# from matplotlib.axes import Axes | ||
from numpy import float64, generic | ||
from matplotlib.axes import Axes as mplAxes | ||
from numpy import float64 | ||
from numpy.typing import NDArray | ||
from scipy.stats._continuous_distns import rv_continuous | ||
|
||
ContinuousDist = Union[Any, rv_continuous] | ||
Axes = TypeVar("Axes", bound=Union[generic, Any]) | ||
NDArrayAxes = NDArray[Axes] | ||
Axes = TypeVar("Axes", bound=Union[mplAxes, Any]) | ||
NDArrayAxes = NDArray[Any] | ||
NDArrayFloat = NDArray[float64] |