From f208054f6883589239f21d5e46545960c45ece18 Mon Sep 17 00:00:00 2001 From: Bryan Newbold Date: Wed, 17 Nov 2021 16:11:44 -0800 Subject: python: fix api annotations (DefaultApi not ApiClient) --- python/fatcat_tools/cleanups/file_release_bugfix.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'python/fatcat_tools/cleanups/file_release_bugfix.py') diff --git a/python/fatcat_tools/cleanups/file_release_bugfix.py b/python/fatcat_tools/cleanups/file_release_bugfix.py index dc27f9b5..cbc3a114 100644 --- a/python/fatcat_tools/cleanups/file_release_bugfix.py +++ b/python/fatcat_tools/cleanups/file_release_bugfix.py @@ -4,7 +4,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, public_api, uuid2fcid from fatcat_tools.importers.common import EntityImporter, JsonLinePusher @@ -24,7 +24,7 @@ class FileReleaseBugfix(EntityImporter): python -m fatcat_tools.cleans.file_release_bugfix - < blah.json """ - def __init__(self, api: ApiClient, **kwargs): + def __init__(self, api: DefaultApi, **kwargs): eg_desc = ( kwargs.pop("editgroup_description", None) -- cgit v1.2.3