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

Skip to content

Commit 4b5d999

Browse files
committed
pep8.
1 parent 208f6b7 commit 4b5d999

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/matplotlib/markers.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,8 @@ def get_marker(self):
247247
return self._marker
248248

249249
def set_marker(self, marker):
250-
if isinstance(marker, np.ndarray) and marker.ndim == 2 and marker.shape[1] == 2:
250+
if (isinstance(marker, np.ndarray) and marker.ndim == 2 and
251+
marker.shape[1] == 2):
251252
self._marker_function = self._set_vertices
252253
elif (iterable(marker) and len(marker) in (2, 3) and
253254
marker[1] in (0, 1, 2, 3)):

0 commit comments

Comments
 (0)