mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-23 12:21:27 +08:00
stdlib/_ast.pyi: Fix ast.ImportFrom arg module _identifier to str (#8648)
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user