From 22727f3985c8e1b95381b133c0211b87a96b1710 Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> Date: Sun, 1 Sep 2024 00:23:55 +0300 Subject: [PATCH] ghapi: import-not-found -> import-untyped --- src/pepotron/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pepotron/__init__.py b/src/pepotron/__init__.py index 93678f4..21ddb29 100644 --- a/src/pepotron/__init__.py +++ b/src/pepotron/__init__.py @@ -119,7 +119,7 @@ def pairwise(iterable): # type: ignore[no-redef,no-untyped-def] def _get_github_prs() -> list[Any]: - from ghapi.all import GhApi # type: ignore[import-not-found] + from ghapi.all import GhApi # type: ignore[import-untyped] api = GhApi(owner="python", repo="peps", authenticate=False) return api.pulls.list(per_page=100) # type: ignore[no-any-return]