Skip to content

Commit 6d30797

Browse files
committed
Fix flake8 violation
1 parent fee457e commit 6d30797

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

shivyc/preproc.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,10 @@ def process(tokens, this_file):
3333
processed += new_tokens
3434

3535
except IOError:
36-
error_collector.add(CompilerError("unable to read included file", tokens[i + 2].r))
36+
error_collector.add(CompilerError(
37+
"unable to read included file",
38+
tokens[i + 2].r
39+
))
3740

3841
i += 3
3942

0 commit comments

Comments
 (0)