We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 875d489 commit 1237406Copy full SHA for 1237406
pandas/plotting/_matplotlib/tools.py
@@ -328,13 +328,13 @@ def _remove_labels_from_axis(axis: Axis):
328
axis.get_label().set_visible(False)
329
330
331
-def _has_externally_shared_axis(ax1: matplotlib.axes, compare_axis: str) -> bool:
+def _has_externally_shared_axis(ax1: Axes, compare_axis: str) -> bool:
332
"""
333
Return whether an axis is externally shared.
334
335
Parameters
336
----------
337
- ax1 : matplotlib.axes
+ ax1 : matplotlib.axes.Axes
338
Axis to query.
339
compare_axis : str
340
`"x"` or `"y"` according to whether the X-axis or Y-axis is being
0 commit comments