Skip to content

Commit

Permalink
Fix pep errors
Browse files Browse the repository at this point in the history
  • Loading branch information
XenHat authored Oct 21, 2017
1 parent cb91fad commit f07af7f
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion linter.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
SublimeLinter Installer
'''


def winpath(pf, firstp, cmd):
"""Get conditional path for Microsoft(R) Windows OS."""
arch = platform.architecture()[0][:-3]
Expand Down Expand Up @@ -277,7 +278,11 @@ def run(self, cmd, code):
offset = getLastOffset(preproc_bank, new_number)[0]
tokminoff = str(new_number - int(offset))
token_match = match.group(1)
new_line = '{0}:: ({1:>3}, 1): in file {2}: {3}'.format(token_match, tokminoff, result[1], new_line)
new_line = '{0}:: ({1:>3}, 1): in file {2}: {3}'\
.format(token_match,
tokminoff,
result[1],
new_line)
# print("New Line: {0}".format(new_line))
fixed_output_lines.append(new_line)
continue
Expand Down

0 comments on commit f07af7f

Please sign in to comment.