We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5910ea6 commit 8810043Copy full SHA for 8810043
python/selfie-lib/selfie_lib/CommentTracker.py
@@ -54,7 +54,7 @@ def commentString(typedPath: TypedPath) -> Tuple[str, int]:
54
55
@staticmethod
56
def __commentAndLine(typedPath: TypedPath) -> Tuple[WritableComment, int]:
57
- with open(typedPath.absolute_path) as file:
+ with open(typedPath.absolute_path, encoding="utf-8") as file:
58
content = Slice(file.read())
59
for comment_str in [
60
"# selfieonce",
0 commit comments