Skip to content

Commit 825ca18

Browse files
fix kwargs (#33)
1 parent 8c8c601 commit 825ca18

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

defs.bzl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ pip_repository = repository_rule(
5555
)
5656

5757

58-
def pip_install(requirements, name=DEFAULT_REPOSITORY_NAME):
58+
def pip_install(requirements, name=DEFAULT_REPOSITORY_NAME, **kwargs):
5959
pip_repository(
60-
name=name, requirements=requirements,
60+
name=name, requirements=requirements, **kwargs
6161
)

0 commit comments

Comments
 (0)