aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@archive.org>2021-04-07 18:01:14 -0700
committerBryan Newbold <bnewbold@archive.org>2021-04-07 18:01:14 -0700
commitb604749c4059c72b5b5d64e8e964263f846581e7 (patch)
tree7f51d02976398919eee19858b82f2224d63d93c2
parentcffcea8c884c51c0c158298ded7eb0b5d36cbb0b (diff)
downloadfatcat-scholar-b604749c4059c72b5b5d64e8e964263f846581e7.tar.gz
fatcat-scholar-b604749c4059c72b5b5d64e8e964263f846581e7.zip
small lint fix
-rw-r--r--fatcat_scholar/api_entities.py2
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)