diff options
Diffstat (limited to 'python/fatcat_tools/transforms')
-rw-r--r-- | python/fatcat_tools/transforms/csl.py | 2 | ||||
-rw-r--r-- | python/fatcat_tools/transforms/elasticsearch.py | 2 | ||||
-rw-r--r-- | python/fatcat_tools/transforms/entities.py | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/python/fatcat_tools/transforms/csl.py b/python/fatcat_tools/transforms/csl.py index f94fa372..7ab94cac 100644 --- a/python/fatcat_tools/transforms/csl.py +++ b/python/fatcat_tools/transforms/csl.py @@ -8,7 +8,7 @@ from citeproc import formatter from citeproc.source.json import CiteProcJSON from citeproc_styles import get_style_filepath -from fatcat_client import ApiClient +from fatcat_openapi_client import ApiClient def contribs_by_role(contribs, role): diff --git a/python/fatcat_tools/transforms/elasticsearch.py b/python/fatcat_tools/transforms/elasticsearch.py index 303d56a9..3a53db4d 100644 --- a/python/fatcat_tools/transforms/elasticsearch.py +++ b/python/fatcat_tools/transforms/elasticsearch.py @@ -1,7 +1,7 @@ import collections -from fatcat_client import ApiClient +from fatcat_openapi_client import ApiClient def check_kbart(year, archive): diff --git a/python/fatcat_tools/transforms/entities.py b/python/fatcat_tools/transforms/entities.py index b67df12d..8e5de286 100644 --- a/python/fatcat_tools/transforms/entities.py +++ b/python/fatcat_tools/transforms/entities.py @@ -1,7 +1,7 @@ import collections -from fatcat_client import ApiClient +from fatcat_openapi_client import ApiClient def entity_to_dict(entity, api_client=None): """ |