Skip to content

Commit 4d2a16d

Browse files
committed
mypy fixup
1 parent 5d80780 commit 4d2a16d

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

pandas/core/array_algos/quantile.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
from typing import Sequence, Union
2-
31
import numpy as np
42

53
from pandas._libs import lib
@@ -13,7 +11,7 @@ def quantile_with_mask(
1311
values: np.ndarray,
1412
mask: np.ndarray,
1513
fill_value,
16-
qs: Union[float, Sequence[float]],
14+
qs,
1715
interpolation: str,
1816
axis: int,
1917
) -> np.ndarray:

0 commit comments

Comments
 (0)