@@ -1172,6 +1172,7 @@ def get_rorigin(self):
11721172 def get_rsign (self ):
11731173 return np .sign (self ._originViewLim .y1 - self ._originViewLim .y0 )
11741174
1175+ @_api .make_keyword_only ("3.6" , "emit" )
11751176 def set_rlim (self , bottom = None , top = None , emit = True , auto = False , ** kwargs ):
11761177 """
11771178 See `~.polar.PolarAxes.set_ylim`.
@@ -1191,6 +1192,7 @@ def set_rlim(self, bottom=None, top=None, emit=True, auto=False, **kwargs):
11911192 return self .set_ylim (bottom = bottom , top = top , emit = emit , auto = auto ,
11921193 ** kwargs )
11931194
1195+ @_api .make_keyword_only ("3.6" , "emit" )
11941196 def set_ylim (self , bottom = None , top = None , emit = True , auto = False ,
11951197 * , ymin = None , ymax = None ):
11961198 """
@@ -1227,7 +1229,8 @@ def set_ylim(self, bottom=None, top=None, emit=True, auto=False,
12271229 bottom, top : (float, float)
12281230 The new y-axis limits in data coordinates.
12291231 """
1230- return super ().set_ylim (bottom , top , emit , auto , ymin = ymin , ymax = ymax )
1232+ return super ().set_ylim (
1233+ bottom , top , emit = emit , auto = auto , ymin = ymin , ymax = ymax )
12311234
12321235 def get_rlabel_position (self ):
12331236 """
0 commit comments