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

Skip to content

Commit 775db02

Browse files
committed
Flake8: space added
1 parent 433308c commit 775db02

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/matplotlib/axis.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1629,7 +1629,7 @@ def set_ticklabels(self, ticklabels, *, minor=False, **kwargs):
16291629
locator = (self.get_minor_locator() if minor
16301630
else self.get_major_locator())
16311631
if isinstance(locator, mticker.FixedLocator):
1632-
tickd = {loc:lab for loc, lab in zip(locator.locs, ticklabels)}
1632+
tickd = {loc: lab for loc, lab in zip(locator.locs, ticklabels)}
16331633
formatter = mticker.FuncFormatter(lambda x, pos: tickd.get(x, ""))
16341634
else:
16351635
formatter = mticker.FixedFormatter(ticklabels)

0 commit comments

Comments
 (0)