Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add missing type hint
  • Loading branch information
itaisteinherz committed Feb 20, 2022
commit 200fba5ebd75b84815fc9feb501c09689b830a93
2 changes: 1 addition & 1 deletion stdlib/importlib/metadata/__init__.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ if sys.version_info >= (3, 8):
if sys.version_info >= (3, 10):
class SelectableGroups(dict): # use as list is deprecated since 3.10
@classmethod
def load(cls, eps) -> SelectableGroups: ...
def load(cls, eps: SelectableGroups) -> SelectableGroups: ...
Comment thread
itaisteinherz marked this conversation as resolved.
Outdated
Comment thread
srittau marked this conversation as resolved.
Outdated
@property
def groups(self) -> set[str]: ...
@property
Expand Down