Skip to content

Commit 46fd402

Browse files
committedNov 24, 2020
fix: python 3.9 compat
1 parent 7c61d1a commit 46fd402

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎tools/make_list_unique.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
for p in Path('../lists/').glob('*/*.json'):
99
with p.open() as _f:
10-
warninglist = json.load(_f, encoding="utf-8")
10+
warninglist = json.load(_f)
1111
warninglist['list'] = sorted(list(set(warninglist['list'])))
1212

1313
with p.open('w') as _f:

0 commit comments

Comments
 (0)