From ecbaa7ff48d046e77547a69dd2be8ef0c7b9bf04 Mon Sep 17 00:00:00 2001 From: Bryan Newbold Date: Wed, 17 Nov 2021 17:31:59 -0800 Subject: WIP: start fixing types and lints from openapi annotations --- python/fatcat_tools/cleanups/common.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'python/fatcat_tools/cleanups') diff --git a/python/fatcat_tools/cleanups/common.py b/python/fatcat_tools/cleanups/common.py index 1b467b59..aa26acaf 100644 --- a/python/fatcat_tools/cleanups/common.py +++ b/python/fatcat_tools/cleanups/common.py @@ -54,7 +54,7 @@ class EntityCleaner: def reset(self) -> None: self.counts = Counter({"lines": 0, "cleaned": 0, "updated": 0}) self._edit_count = 0 - self._editgroup_id = None + self._editgroup_id: Optional[str] = None self._entity_queue: List[Any] = [] self._idents_inflight: List[str] = [] @@ -72,7 +72,7 @@ class EntityCleaner: self.counts["skip-null"] += 1 return - entity = entity_from_dict(record, self.entity_type, api_client=self.ac) + entity = entity_from_dict(record, self.entity_type, api_client=self.ac.api_client) if entity.state != "active": self.counts["skip-inactive"] += 1 @@ -86,7 +86,7 @@ class EntityCleaner: self.counts["cleaned"] += 1 if self.dry_run_mode: - entity_dict = entity_to_dict(entity, api_client=self.ac) + entity_dict = entity_to_dict(entity, api_client=self.ac.api_client) print(json.dumps(entity_dict)) return -- cgit v1.2.3