Skip to content

Commit

Permalink
fix: escape
Browse files Browse the repository at this point in the history
  • Loading branch information
Pctg-x8 committed Dec 23, 2024
1 parent 6b16158 commit 36c18f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/actions/codeform-checker/linefeed_checker.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
with open(fpath, "rb") as fp:
buf = bytearray(64 * 1024)
while fp.readinto1(buf):
if b'r' in buf:
if b'\r' in buf:
incorrect_line_feeds.append(fpath)
break

Expand Down

0 comments on commit 36c18f4

Please sign in to comment.