From b71782a75daba05379a2716c6b2ad4e96a67bd57 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Tue, 1 Oct 2024 03:44:48 +0200 Subject: [PATCH] _astroid_utils.py: fix typo --- autoapi/_astroid_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoapi/_astroid_utils.py b/autoapi/_astroid_utils.py index 4547a2e2..e9a85f64 100644 --- a/autoapi/_astroid_utils.py +++ b/autoapi/_astroid_utils.py @@ -129,7 +129,7 @@ def get_full_basenames(node: astroid.nodes.ClassDef) -> Iterable[str]: node: The class definition node to resolve the bases of. Returns: - The fullly qualified names. + The fully qualified names. """ for base in node.bases: yield _resolve_annotation(base)