From f07af7f2a2bdfeca498b8cc803c03496cdf750dd Mon Sep 17 00:00:00 2001 From: Xenhat Date: Sat, 21 Oct 2017 12:15:24 -0400 Subject: [PATCH] Fix pep errors --- linter.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/linter.py b/linter.py index fbfe337..0a6ac21 100644 --- a/linter.py +++ b/linter.py @@ -22,6 +22,7 @@ SublimeLinter Installer ''' + def winpath(pf, firstp, cmd): """Get conditional path for Microsoft(R) Windows OS.""" arch = platform.architecture()[0][:-3] @@ -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