Skip to content

Commit ab5ed59

Browse files
committed
simplify the bool expression further
1 parent 2db5b84 commit ab5ed59

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

python/private/pypi/whl_library.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -400,7 +400,7 @@ def _whl_library_impl(rctx):
400400

401401
# also enable pipstar for any whls that are downloaded without `pip`
402402
enable_pipstar = (rp_config.enable_pipstar or whl_path) and rctx.attr.config_load
403-
enable_pipstar_extract = (enable_pipstar and rp_config.bazel_8_or_later) and rctx.attr.config_load
403+
enable_pipstar_extract = enable_pipstar and rp_config.bazel_8_or_later
404404

405405
if not whl_path:
406406
if rctx.attr.urls:

0 commit comments

Comments
 (0)