From 1dd533acc0827e03a13faaeefe20d1df69332892 Mon Sep 17 00:00:00 2001 From: Anh71me Date: Tue, 30 Aug 2022 18:18:28 +0800 Subject: [PATCH] stdlib/_ast.pyi: Fix ast.ImportFrom arg module _identifier to str (#8648) --- stdlib/_ast.pyi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stdlib/_ast.pyi b/stdlib/_ast.pyi index c68e921ba..b7d081f6a 100644 --- a/stdlib/_ast.pyi +++ b/stdlib/_ast.pyi @@ -194,7 +194,7 @@ class Import(stmt): class ImportFrom(stmt): if sys.version_info >= (3, 10): __match_args__ = ("module", "names", "level") - module: _Identifier | None + module: str | None names: list[alias] level: int