Skip to content

Commit f77c3fd

Browse files
committed
PEP257 docstrings
1 parent 0d44715 commit f77c3fd

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

pep8.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,15 @@
88
# License: MIT
99
#
1010

11+
"""This module exports the PEP8 plugin linter class."""
12+
1113
from SublimeLinter.lint import PythonLinter
1214

1315

1416
class PEP8(PythonLinter):
17+
18+
"""Provides an interface to the pep8 python script."""
19+
1520
language = 'python'
1621
cmd = ('pep8@python', '*', '-')
1722
regex = r'^.+?:(?P<line>\d+):(?P<col>\d+): (?:(?P<error>E)|(?P<warning>W))\d+ (?P<message>.+)'

0 commit comments

Comments
 (0)