summaryrefslogtreecommitdiff
path: root/doc/data/messages/m/missing-final-newline/good.py
blob: fa1e5072e80d482f6e76976127d04af77d5aaedf (plain)
1
2
3
4
5
6
7
8
9
# using LF

eat("apple", "candy") #  \n
print(123)  # \nEOF

# using CRLF

eat("apple", "candy")  # \r\n
print(123)  # \r\nEOF