Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 4790c12

Browse filesBrowse files
NelleVdmcdougall
authored andcommitted
PEP8 fixes - small backslashes and breaks fixes
1 parent 95a49d3 commit 4790c12
Copy full SHA for 4790c12

File tree

Expand file treeCollapse file tree

1 file changed

+2
-2
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+2
-2
lines changed

‎lib/matplotlib/type1font.py

Copy file name to clipboardExpand all lines: lib/matplotlib/type1font.py
+2-2Lines 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)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.