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

Skip to content

Commit fb94497

Browse files
committed
variable name tweaks for readability
1 parent 8c23c72 commit fb94497

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/matplotlib/axes.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from __future__ import division, print_function
1+
fsteprom __future__ import division, print_function
22
import math
33
import warnings
44
from operator import itemgetter
@@ -4807,8 +4807,8 @@ def step(self, x, y, *args, **kwargs):
48074807
if where not in ('pre', 'post', 'mid'):
48084808
raise ValueError("'where' argument to step must be "
48094809
"'pre', 'post' or 'mid'")
4810-
ln_sty = kwargs.pop('linestyle', '')
4811-
kwargs['linestyle'] = 'steps-' + where + ln_sty
4810+
usr_linestyle = kwargs.pop('linestyle', '')
4811+
kwargs['linestyle'] = 'steps-' + where + usr_linestyle
48124812

48134813
return self.plot(x, y, *args, **kwargs)
48144814

0 commit comments

Comments
 (0)