Skip to content

Commit da4bfa4

Browse files
Default source file encoding in Python 2 is ASCII (#70)
* The copyright symbol was causing SyntaxError: Non-ASCII character '\xc2' on Python 2.7 * Change copyright symbol to (C)
1 parent cc5fa23 commit da4bfa4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/rapidfuzz/process.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# SPDX-License-Identifier: MIT
2-
# Copyright © 2020 Max Bachmann
3-
# Copyright © 2011 Adam Cohen
2+
# Copyright (C) 2020 Max Bachmann
3+
# Copyright (C) 2011 Adam Cohen
44

55
from rapidfuzz import fuzz, utils
66
from rapidfuzz.cpp_impl import extractOne

0 commit comments

Comments
 (0)