Skip to content

Commit 69099fc

Browse files
committed
buildifier
1 parent 7d648f7 commit 69099fc

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

python/private/pypi/evaluate_markers.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@
1414

1515
"""A simple function that evaluates markers using a python interpreter."""
1616

17+
load(":deps.bzl", "record_files")
1718
load(":pep508_env.bzl", "env")
1819
load(":pep508_evaluate.bzl", "evaluate")
1920
load(":pep508_platform.bzl", "platform_from_str")
2021
load(":pep508_requirement.bzl", "requirement")
21-
load(":deps.bzl", "record_files")
2222
load(":pypi_repo_utils.bzl", "pypi_repo_utils")
2323

2424
# Used as a default value in a rule to ensure we fetch the dependencies.

python/private/pypi/extension.bzl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,8 @@ def _whl_repos(*, requirement, whl_library_args, download_only, netrc, auth_patt
309309
# Get rid of the version fot the target platforms because we are
310310
# passing the interpreter any way. Ideally we should search of ways
311311
# how to pass the target platforms through the hub repo.
312-
p.partition("_")[2] for p in requirement.target_platforms
312+
p.partition("_")[2]
313+
for p in requirement.target_platforms
313314
]
314315

315316
# Pure python wheels or sdists may need to have a platform here

0 commit comments

Comments
 (0)