We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc40cd5 commit 3a36cbdCopy full SHA for 3a36cbd
importlib_metadata/__init__.py
@@ -252,7 +252,7 @@ def values(self):
252
return super().values()
253
254
255
-class SelectableGroups(dict):
+class SelectableGroups(Deprecated, dict):
256
"""
257
A backward- and forward-compatible result from
258
entry_points that fully implements the dict interface.
@@ -270,7 +270,8 @@ def _all(self):
270
271
Reconstruct a list of all entrypoints from the groups.
272
273
- return EntryPoints(itertools.chain.from_iterable(self.values()))
+ groups = super(Deprecated, self).values()
274
+ return EntryPoints(itertools.chain.from_iterable(groups))
275
276
@property
277
def groups(self):
0 commit comments