Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit d99bf41

Browse files
committed
Change documentation of get_minor_ticks to list return type
1 parent de62c6f commit d99bf41

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/matplotlib/axis.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1334,7 +1334,7 @@ def get_major_ticks(self, numticks=None):
13341334
return self.majorTicks[:numticks]
13351335

13361336
def get_minor_ticks(self, numticks=None):
1337-
"""Get the minor tick instances; grow as necessary."""
1337+
r"""Return the list of minor `.Tick`\s."""
13381338
if numticks is None:
13391339
numticks = len(self.get_minorticklocs())
13401340

0 commit comments

Comments
 (0)