From 671432eb0956e93c3f788d918770d5079de93114 Mon Sep 17 00:00:00 2001 From: Joshua Napoli Date: Sat, 20 Dec 2025 11:26:13 -0500 Subject: [PATCH] Change whis type to support tuple (#15156) --- stubs/seaborn/seaborn/categorical.pyi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stubs/seaborn/seaborn/categorical.pyi b/stubs/seaborn/seaborn/categorical.pyi index b3c946d92..eed93a807 100644 --- a/stubs/seaborn/seaborn/categorical.pyi +++ b/stubs/seaborn/seaborn/categorical.pyi @@ -27,7 +27,7 @@ def boxplot( dodge: bool | Literal["auto"] = "auto", width: float = 0.8, gap: float = 0, - whis: float = 1.5, + whis: float | tuple[float, float] = 1.5, linecolor: ColorType = "auto", linewidth: float | None = None, fliersize: float | None = None,