Skip to content

Commit 71fadc4

Browse files
author
dcherian
committed
pep8 fix.
1 parent 0af7fac commit 71fadc4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

xarray/plot/facetgrid.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -505,7 +505,8 @@ def map(self, func, *args, **kwargs):
505505
maybe_mappable = func(*innerargs, **kwargs)
506506
# TODO: is there a better way to verify that an artist is mappable?
507507
# https://stackoverflow.com/questions/33023036/is-it-possible-to-detect-if-a-matplotlib-artist-is-a-mappable-suitable-for-use-w#33023522
508-
if maybe_mappable and hasattr(maybe_mappable, 'autoscale_None'):
508+
if (maybe_mappable and
509+
hasattr(maybe_mappable, 'autoscale_None')):
509510
self._mappables.append(maybe_mappable)
510511

511512
self._finalize_grid(*args[:2])

0 commit comments

Comments
 (0)