mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 12:44:28 +08:00
stdlib/3/importlib/metadata: add missing "group" attribute to EntryPoint (#3795)
This commit is contained in:
@@ -12,6 +12,7 @@ if sys.version_info >= (3, 8):
|
||||
class EntryPointBase(NamedTuple):
|
||||
name: str
|
||||
value: str
|
||||
group: str
|
||||
class EntryPoint(EntryPointBase):
|
||||
def load(self) -> Any: ... # Callable[[], Any] or an importable module
|
||||
@property
|
||||
|
||||
Reference in New Issue
Block a user