Skip to content

Commit

Permalink
adjustments to pass flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
idleberg committed Oct 25, 2017
1 parent d0c4b63 commit 4e239a5
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions linter.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,7 @@ class Makensis(Linter):
line_col_base = (1, 1)

def split_match(self, match):
"""
Extract and return values from match.
"""

"""Extract and return values from match."""
match, line, col, error, warning, message, near = (
super().split_match(match)
)
Expand All @@ -58,7 +54,6 @@ def split_match(self, match):
return match, line, col, error, warning, message, near

sectionMessage = str(match.groupdict()["sectionMessage"])
countLines = self.view.rowcol(self.view.size())[0]

if sectionMessage:
message = sectionMessage
Expand Down

0 comments on commit 4e239a5

Please sign in to comment.