Skip to content

Commit 7da45dd

Browse files
committed
Coding style
1 parent 48d9ad0 commit 7da45dd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/matplotlib/lines.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1287,8 +1287,8 @@ def get_solid_capstyle(self):
12871287

12881288
def is_dashed(self):
12891289
'return True if line is dashstyle'
1290-
return self._linestyle in ('dashed', 'dashdot', 'dotted') or \
1291-
not is_string_like(self._linestyle)
1290+
return (self._linestyle in ('dashed', 'dashdot', 'dotted') or
1291+
not is_string_like(self._linestyle))
12921292

12931293

12941294
class VertexSelector:

0 commit comments

Comments
 (0)