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 f224121 commit e294994Copy full SHA for e294994
src/virtualenv/run/plugin/base.py
@@ -11,12 +11,12 @@ class PluginLoader(object):
11
12
@classmethod
13
def entry_points_for(cls, key):
14
- return OrderedDict((e.name, e.load()) for e in cls.entry_points(group=key))
+ return OrderedDict((e.name, e.load()) for e in cls.entry_points().select(group=key))
15
16
@staticmethod
17
- def entry_points(**kwargs):
+ def entry_points():
18
if PluginLoader._ENTRY_POINTS is None:
19
- PluginLoader._ENTRY_POINTS = entry_points(**kwargs)
+ PluginLoader._ENTRY_POINTS = entry_points()
20
return PluginLoader._ENTRY_POINTS
21
22
0 commit comments