@@ -308,49 +308,49 @@ class DataFrameGroupBy(GroupBy[DataFrame], Generic[ByT, _TT]):
308308    @overload  
309309    def  boxplot (
310310        self ,
311-         subplots : Literal [True ] =  ... ,
312-         column : IndexLabel  |  None  =  ... ,
313-         fontsize : float  |  str  |  None  =  ... ,
314-         rot : float  =  ... ,
315-         grid : bool  =  ... ,
316-         ax : PlotAxes  |  None  =  ... ,
317-         figsize : tuple [float , float ] |  None  =  ... ,
318-         layout : tuple [int , int ] |  None  =  ... ,
319-         sharex : bool  =  ... ,
320-         sharey : bool  =  ... ,
321-         backend : str  |  None  =  ... ,
311+         subplots : Literal [True ] =  True ,
312+         column : IndexLabel  |  None  =  None ,
313+         fontsize : float  |  str  |  None  =  None ,
314+         rot : float  =  0 ,
315+         grid : bool  =  True ,
316+         ax : PlotAxes  |  None  =  None ,
317+         figsize : tuple [float , float ] |  None  =  None ,
318+         layout : tuple [int , int ] |  None  =  None ,
319+         sharex : bool  =  False ,
320+         sharey : bool  =  True ,
321+         backend : str  |  None  =  None ,
322322        ** kwargs ,
323323    ) ->  Series : ...  # Series[PlotAxes] but this is not allowed 
324324    @overload  
325325    def  boxplot (
326326        self ,
327327        subplots : Literal [False ],
328-         column : IndexLabel  |  None  =  ... ,
329-         fontsize : float  |  str  |  None  =  ... ,
330-         rot : float  =  ... ,
331-         grid : bool  =  ... ,
332-         ax : PlotAxes  |  None  =  ... ,
333-         figsize : tuple [float , float ] |  None  =  ... ,
334-         layout : tuple [int , int ] |  None  =  ... ,
335-         sharex : bool  =  ... ,
336-         sharey : bool  =  ... ,
337-         backend : str  |  None  =  ... ,
328+         column : IndexLabel  |  None  =  None ,
329+         fontsize : float  |  str  |  None  =  None ,
330+         rot : float  =  0 ,
331+         grid : bool  =  True ,
332+         ax : PlotAxes  |  None  =  None ,
333+         figsize : tuple [float , float ] |  None  =  None ,
334+         layout : tuple [int , int ] |  None  =  None ,
335+         sharex : bool  =  False ,
336+         sharey : bool  =  True ,
337+         backend : str  |  None  =  None ,
338338        ** kwargs ,
339339    ) ->  PlotAxes : ...
340340    @overload  
341341    def  boxplot (
342342        self ,
343343        subplots : bool ,
344-         column : IndexLabel  |  None  =  ... ,
345-         fontsize : float  |  str  |  None  =  ... ,
346-         rot : float  =  ... ,
347-         grid : bool  =  ... ,
348-         ax : PlotAxes  |  None  =  ... ,
349-         figsize : tuple [float , float ] |  None  =  ... ,
350-         layout : tuple [int , int ] |  None  =  ... ,
351-         sharex : bool  =  ... ,
352-         sharey : bool  =  ... ,
353-         backend : str  |  None  =  ... ,
344+         column : IndexLabel  |  None  =  None ,
345+         fontsize : float  |  str  |  None  =  None ,
346+         rot : float  =  0 ,
347+         grid : bool  =  True ,
348+         ax : PlotAxes  |  None  =  None ,
349+         figsize : tuple [float , float ] |  None  =  None ,
350+         layout : tuple [int , int ] |  None  =  None ,
351+         sharex : bool  =  False ,
352+         sharey : bool  =  True ,
353+         backend : str  |  None  =  None ,
354354        ** kwargs ,
355355    ) ->  PlotAxes  |  Series : ...  # Series[PlotAxes] 
356356    @overload  
0 commit comments