mirror of
https://github.com/pret/pokemon-reverse-engineering-tools.git
synced 2026-08-09 10:47:24 -05:00
remove the 'json.read = json.loads' hack
There's no good reason to use json.read anymore, even in the case of jython.
This commit is contained in:
parent
768046bfcd
commit
df820deebc
|
|
@ -17,10 +17,6 @@ import string
|
|||
if not hasattr(json, "dumps"):
|
||||
json.dumps = json.write
|
||||
|
||||
# New versions of json don't have read anymore.
|
||||
if not hasattr(json, "read"):
|
||||
json.read = json.loads
|
||||
|
||||
from labels import (
|
||||
remove_quoted_text,
|
||||
line_has_comment_address,
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user