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