Skip to content

Commit 97640da

Browse files
committed
Another Pep8 fix
1 parent 7e0d1ca commit 97640da

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

lib/matplotlib/image.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -697,7 +697,8 @@ def get_zdata(self, event):
697697
i, j = trans.transform_point([y, x]).astype(int)
698698
z = arr[i, j]
699699
if z.size > 1:
700-
# Override default numpy formatting for this specific case. Bad idea?
700+
# Override default numpy formatting for this specific case.
701+
# Bad idea?
701702
z = ', '.join('{:0.3g}'.format(item) for item in z)
702703
return 'z=%s' % z
703704

0 commit comments

Comments
 (0)