diff options
author | gVisor bot <gvisor-bot@google.com> | 2020-02-13 09:20:30 -0800 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-02-13 09:21:39 -0800 |
commit | 3ad6d3056371b031fb0c16c4e365d5c7e60bdaf0 (patch) | |
tree | 6e1fa4fd140ff69b02dbc310f5e77a3cc50ae7bc /benchmarks/harness/machine_producers | |
parent | cf1e50a80976fae95eef4ab05d961200b04e2346 (diff) |
Call py_requirement with named argument for optional kwarg.
PiperOrigin-RevId: 294930818
Diffstat (limited to 'benchmarks/harness/machine_producers')
-rw-r--r-- | benchmarks/harness/machine_producers/BUILD | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/benchmarks/harness/machine_producers/BUILD b/benchmarks/harness/machine_producers/BUILD index 3711a397f..81f19bd08 100644 --- a/benchmarks/harness/machine_producers/BUILD +++ b/benchmarks/harness/machine_producers/BUILD @@ -31,7 +31,10 @@ py_library( deps = [ "//benchmarks/harness:machine", "//benchmarks/harness/machine_producers:machine_producer", - py_requirement("PyYAML", False), + py_requirement( + "PyYAML", + direct = False, + ), ], ) |