diff options
Diffstat (limited to 'fatcat_scholar/api_entities.py')
-rw-r--r-- | fatcat_scholar/api_entities.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fatcat_scholar/api_entities.py b/fatcat_scholar/api_entities.py index c4a4ace..605a7ac 100644 --- a/fatcat_scholar/api_entities.py +++ b/fatcat_scholar/api_entities.py @@ -32,7 +32,7 @@ def entity_from_json( """ if not api_client: api_client = _global_serde_api_client - thing = collections.namedtuple("Thing", ["data"]) + thing = collections.namedtuple("thing", ["data"]) thing.data = json_str return api_client.deserialize(thing, entity_type) |