8000 PEP8 fixes - small backslashes and breaks fixes · matplotlib/matplotlib@4790c12 · GitHub
[go: up one dir, main page]

Skip to content

Commit 4790c12

Browse files
NelleVdmcdougall
authored andcommitted
PEP8 fixes - small backslashes and breaks fixes
1 parent 95a49d3 commit 4790c12

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/matplotlib/type1font.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -149,8 +149,8 @@ def _tokens(cls, text):
149149
"""
150150
pos = 0
151151
while pos < len(text):
152-
match = cls._comment.match(text[pos:]) or \
153-
cls._whitespace.match(text[pos:])
152+
match = (cls._comment.match(text[pos:]) or
153+
cls._whitespace.match(text[pos:]))
154154
if match:
155155
yield ('whitespace', match.group())
156156
pos += match.end()

0 commit comments

Comments
 (0)
0