Skip to content

Commit

Permalink
add comment
Browse files Browse the repository at this point in the history
  • Loading branch information
Schrodinger71 authored Jun 29, 2024
1 parent b6291c9 commit 03fcb6d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tools/check_crlf.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def is_file_crlf(path: str) -> bool:
# https://stackoverflow.com/a/29697732/4678631
with open(path, "rb") as f:
for line in f:
if line.endswith(b"\n"):
if line.endswith(b"\n"): # fix ADT
return True

return False
Expand Down

0 comments on commit 03fcb6d

Please sign in to comment.