mirror of
https://github.com/apache/superset.git
synced 2026-04-27 20:14:54 +00:00
chore: Update mypy and fix stubs issue (#24033)
This commit is contained in:
@@ -99,8 +99,8 @@ def boxplot(
|
||||
return np.nanpercentile(series, low)
|
||||
|
||||
else:
|
||||
whisker_high = np.max # type: ignore
|
||||
whisker_low = np.min # type: ignore
|
||||
whisker_high = np.max
|
||||
whisker_low = np.min
|
||||
|
||||
def outliers(series: Series) -> Set[float]:
|
||||
above = series[series > whisker_high(series)]
|
||||
|
||||
Reference in New Issue
Block a user