Skip to content

Commit 0a62fcc

Browse files
committed
Fix polar type stubs
1 parent 10453db commit 0a62fcc

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

lib/matplotlib/projections/polar.pyi

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ class PolarTransform(mtransforms.Transform):
1717
self,
1818
axis: PolarAxes | None = ...,
1919
use_rmin: bool = ...,
20-
_apply_theta_transforms: bool = ...,
2120
*,
21+
apply_theta_transforms: bool = ...,
2222
scale_transform: mtransforms.Transform | None = ...,
2323
) -> None: ...
2424
def inverted(self) -> InvertedPolarTransform: ...
@@ -35,7 +35,8 @@ class InvertedPolarTransform(mtransforms.Transform):
3535
self,
3636
axis: PolarAxes | None = ...,
3737
use_rmin: bool = ...,
38-
_apply_theta_transforms: bool = ...,
38+
*,
39+
apply_theta_transforms: bool = ...,
3940
) -> None: ...
4041
def inverted(self) -> PolarTransform: ...
4142

0 commit comments

Comments
 (0)