We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2cca714 commit 8676521Copy full SHA for 8676521
1 file changed
pep8.py
@@ -14,7 +14,7 @@
14
class Pep8(PythonLinter):
15
language = 'python'
16
cmd = ('pep8@python', '*', '-')
17
- regex = r'^.+?:(?P<line>\d+):(?P<col>\d+): (?P<type>[EW])\d+ (?P<error>.+)'
+ regex = r'^.+?:(?P<line>\d+):(?P<col>\d+): (?:(?P<error>E)|(?P<warning>W))\d+ (?P<message>.+)'
18
multiline = True
19
defaults = {
20
'--select=,': "",
0 commit comments