You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 7, 2021. It is now read-only.
try:
import simplejson as json
except ImportError:
import json
with open('file.json') as fh:
json.load(fh)
The previous block of code will generate the error "redefinition of unused 'json' from line 4
". But in this case I don't see why it should be an error.