Skip to content

Commit f224121

Browse files
committed
Pass kwargs to entry_points
1 parent 5e37739 commit f224121

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/virtualenv/run/plugin/base.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ def entry_points_for(cls, key):
1414
return OrderedDict((e.name, e.load()) for e in cls.entry_points(group=key))
1515

1616
@staticmethod
17-
def entry_points():
17+
def entry_points(**kwargs):
1818
if PluginLoader._ENTRY_POINTS is None:
19-
PluginLoader._ENTRY_POINTS = entry_points()
19+
PluginLoader._ENTRY_POINTS = entry_points(**kwargs)
2020
return PluginLoader._ENTRY_POINTS
2121

2222

0 commit comments

Comments
 (0)