Skip to content

Commit 1bd1ffb

Browse files
author
Brian Sardo
committed
fix indentation issues
1 parent 117b368 commit 1bd1ffb

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

python/pip.bzl

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@
1616
def _pip_import_impl(repository_ctx, binary_name):
1717
"""Core implementation of pip_import."""
1818

19-
# Add an empty top-level BUILD file.
20-
# This is because Bazel requires BUILD files along all paths accessed
21-
# via //this/sort/of:path and we wouldn't be able to load our generated
22-
# requirements.bzl without it.
23-
repository_ctx.file("BUILD", "")
19+
# Add an empty top-level BUILD file.
20+
# This is because Bazel requires BUILD files along all paths accessed
21+
# via //this/sort/of:path and we wouldn't be able to load our generated
22+
# requirements.bzl without it.
23+
repository_ctx.file("BUILD", "")
2424

2525
# To see the output, pass: quiet=False
2626
result = repository_ctx.execute([
@@ -31,8 +31,8 @@ def _pip_import_impl(repository_ctx, binary_name):
3131
"--directory", repository_ctx.path(""),
3232
], quiet=False)
3333

34-
if result.return_code:
35-
fail("pip_import failed: %s (%s)" % (result.stdout, result.stderr))
34+
if result.return_code:
35+
fail("pip_import failed: %s (%s)" % (result.stdout, result.stderr))
3636

3737
def _pip_system_import_impl(repository_ctx):
3838
"""System python implementation."""

0 commit comments

Comments
 (0)