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

Skip to content

Commit e010581

Browse files
committed
FIX nitpicks
1 parent ca2cc2f commit e010581

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

examples/widgets/lasso_selector_demo.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
from matplotlib.path import Path
99

1010

11-
1211
class SelectFromCollection(object):
1312
"""Select indices from a matplotlib collection using `LassoSelector`.
1413

lib/matplotlib/axes/_base.py

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2935,7 +2935,7 @@ def set_xscale(self, value, **kwargs):
29352935
----------
29362936
value : ["linear", "log", "symlog", "logit"]
29372937
scaling strategy to apply
2938-
2938+
29392939
Notes
29402940
-----
29412941
Different kwargs are accepted, depending on the scale. See
@@ -2949,7 +2949,7 @@ def set_xscale(self, value, **kwargs):
29492949
29502950
matplotlib.scale.SymmetricalLogTransform : symlog transform
29512951
2952-
matplotlib.scale.LogisticTransform  : logit transform
2952+
matplotlib.scale.LogisticTransform : logit transform
29532953
"""
29542954
# If the scale is being set to log, clip nonposx to prevent headaches
29552955
# around zero
@@ -3034,7 +3034,7 @@ def set_xticklabels(self, labels, fontdict=None, minor=False, **kwargs):
30343034
30353035
Other Parameters
30363036
-----------------
3037-
kwargs : `~matplotlib.text.Text` properties.
3037+
**kwargs : `~matplotlib.text.Text` properties.
30383038
"""
30393039
if fontdict is not None:
30403040
kwargs.update(fontdict)
@@ -3232,7 +3232,7 @@ def set_yscale(self, value, **kwargs):
32323232
----------
32333233
value : ["linear", "log", "symlog", "logit"]
32343234
scaling strategy to apply
3235-
3235+
32363236
Notes
32373237
-----
32383238
Different kwargs are accepted, depending on the scale. See
@@ -3335,8 +3335,7 @@ def set_yticklabels(self, labels, fontdict=None, minor=False, **kwargs):
33353335
33363336
Other Parameters
33373337
----------------
3338-
kwargs : `~matplotlib.text.Text` properties.
3339-
3338+
**kwargs : `~matplotlib.text.Text` properties.
33403339
"""
33413340
if fontdict is not None:
33423341
kwargs.update(fontdict)

0 commit comments

Comments
 (0)