diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2021-11-17 16:11:44 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2021-11-23 17:39:02 -0800 |
commit | f208054f6883589239f21d5e46545960c45ece18 (patch) | |
tree | a58de9b342d22b8980f67e14ac8144e273835ffb /python/fatcat_tools/cleanups/file_short_wayback_ts.py | |
parent | 16e0a5cef642f1d180354fa1da9ea568ebdd3946 (diff) | |
download | fatcat-f208054f6883589239f21d5e46545960c45ece18.tar.gz fatcat-f208054f6883589239f21d5e46545960c45ece18.zip |
python: fix api annotations (DefaultApi not ApiClient)
Diffstat (limited to 'python/fatcat_tools/cleanups/file_short_wayback_ts.py')
-rw-r--r-- | python/fatcat_tools/cleanups/file_short_wayback_ts.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/fatcat_tools/cleanups/file_short_wayback_ts.py b/python/fatcat_tools/cleanups/file_short_wayback_ts.py index bdd49f9b..4e029f2b 100644 --- a/python/fatcat_tools/cleanups/file_short_wayback_ts.py +++ b/python/fatcat_tools/cleanups/file_short_wayback_ts.py @@ -5,7 +5,7 @@ import sys from typing import Any, Dict import fatcat_openapi_client -from fatcat_openapi_client import ApiClient, FileEntity +from fatcat_openapi_client import DefaultApi, FileEntity from fatcat_tools import authenticated_api, entity_from_dict, public_api from fatcat_tools.importers.common import EntityImporter, JsonLinePusher @@ -25,7 +25,7 @@ class FileShortWaybackTimestampCleanup(EntityImporter): python -m fatcat_tools.cleans.file_short_wayback_ts - < blah.json """ - def __init__(self, api: ApiClient, **kwargs): + def __init__(self, api: DefaultApi, **kwargs): eg_desc = ( kwargs.pop("editgroup_description", None) |