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
The rapidjson package does not have a decoder submodule. Since we don't have a corresponding compatibility layer, things like json.decoder.JSONDecodeError fail.
To reproduce
$ signac init json_decoder
$ signac find '{"x": True}'
27958648a9e57fcd66ae5e31ff3359e9
$ signac find '{"x": True}' # This is invalid JSON, the expected behavior is to raise an error indicating that the JSON is invalid
Error: module 'signac.core.json' has no attribute 'decoder' # The actual output
The text was updated successfully, but these errors were encountered:
Description
The rapidjson package does not have a
decoder
submodule. Since we don't have a corresponding compatibility layer, things likejson.decoder.JSONDecodeError
fail.To reproduce
The text was updated successfully, but these errors were encountered: