diff options
author | Bryan Newbold <bnewbold@archive.org> | 2021-04-07 18:01:14 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@archive.org> | 2021-04-07 18:01:14 -0700 |
commit | b604749c4059c72b5b5d64e8e964263f846581e7 (patch) | |
tree | 7f51d02976398919eee19858b82f2224d63d93c2 /fatcat_scholar/api_entities.py | |
parent | cffcea8c884c51c0c158298ded7eb0b5d36cbb0b (diff) | |
download | fatcat-scholar-b604749c4059c72b5b5d64e8e964263f846581e7.tar.gz fatcat-scholar-b604749c4059c72b5b5d64e8e964263f846581e7.zip |
small lint fix
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) |