File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -748,7 +748,7 @@ class Axes(_AxesBase):
748
748
| Callable [[GaussianKDE ], float ]
749
749
| None = ...,
750
750
side : Literal ["both" , "low" , "high" ] = ...,
751
- orientation : Literal ["vertical" , "horizontal" ] = ...,
751
+ orientation : Literal ["vertical" , "horizontal" ] | None = ...,
752
752
* ,
753
753
data = ...,
754
754
) -> dict [str , Collection ]: ...
@@ -762,7 +762,7 @@ class Axes(_AxesBase):
762
762
showextrema : bool = ...,
763
763
showmedians : bool = ...,
764
764
side : Literal ["both" , "low" , "high" ] = ...,
765
- orientation : Literal ["vertical" , "horizontal" ] = ...,
765
+ orientation : Literal ["vertical" , "horizontal" ] | None = ...,
766
766
) -> dict [str , Collection ]: ...
767
767
768
768
table = mtable .table
Original file line number Diff line number Diff line change @@ -4154,7 +4154,7 @@ def violinplot(
4154
4154
| Callable [[GaussianKDE ], float ]
4155
4155
| None = None ,
4156
4156
side : Literal ["both" , "low" , "high" ] = "both" ,
4157
- orientation : Literal ["vertical" , "horizontal" ] = "vertical" ,
4157
+ orientation : Literal ["vertical" , "horizontal" ] | None = None ,
4158
4158
* ,
4159
4159
data = None ,
4160
4160
) -> dict [str , Collection ]:
You can’t perform that action at this time.
0 commit comments