We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d61bb67 commit c0e7982Copy full SHA for c0e7982
1 file changed
openandroidinstaller/installer_config.py
@@ -55,7 +55,7 @@ def __init__(
55
56
@classmethod
57
def from_file(cls, path):
58
- with open(path, "r") as stream:
+ with open(path, "r", encoding="utf-8") as stream:
59
try:
60
raw_config = yaml.safe_load(stream)
61
if validate_config(raw_config):
0 commit comments