We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7c61d1a commit 46fd402Copy full SHA for 46fd402
tools/make_list_unique.py
@@ -7,7 +7,7 @@
7
8
for p in Path('../lists/').glob('*/*.json'):
9
with p.open() as _f:
10
- warninglist = json.load(_f, encoding="utf-8")
+ warninglist = json.load(_f)
11
warninglist['list'] = sorted(list(set(warninglist['list'])))
12
13
with p.open('w') as _f:
0 commit comments