fix(encoding): utf8 encoding support
Some checks failed
Docker Image CI / build (push) Has been cancelled
Some checks failed
Docker Image CI / build (push) Has been cancelled
Signed-off-by: paprykdev <58005447+paprykdev@users.noreply.github.com>
This commit is contained in:
parent
388964d497
commit
1e4449dccf
@ -110,8 +110,8 @@ class MonetScraper:
|
||||
os.mkdir("dist")
|
||||
except FileExistsError:
|
||||
pass
|
||||
open("dist/data.json",
|
||||
"w").write(json.dumps([d for d in self.data], indent=4))
|
||||
open("dist/data.json", "w", encoding="utf8").write(
|
||||
json.dumps([d for d in self.data], indent=4, ensure_ascii=False))
|
||||
|
||||
async def get_provenance(self):
|
||||
provenances = None
|
||||
|
Loading…
Reference in New Issue
Block a user