Skip to content

Commit 9e11134

Browse files
committed
precommit format
1 parent f0c8b52 commit 9e11134

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

python/extensions/config.bzl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
"""Extension for configuring global settings of rules_python."""
22

3-
load("@bazel_skylib//lib:modules.bzl", "modules")
43
load("//python/private:internal_config_repo.bzl", "internal_config_repo")
54
load("//python/private/pypi:deps.bzl", "pypi_deps")
65

python/private/internal_config_repo.bzl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ such as globals available to Bazel versions, or propagating user environment
1818
settings for rules to later use.
1919
"""
2020

21-
load(":repo_utils.bzl", "repo_utils")
2221
load("//python/private:text_util.bzl", "render")
22+
load(":repo_utils.bzl", "repo_utils")
2323

2424
_ENABLE_PIPSTAR_ENVVAR_NAME = "RULES_PYTHON_ENABLE_PIPSTAR"
2525
_ENABLE_PIPSTAR_DEFAULT = "0"
@@ -163,4 +163,4 @@ internal_config_repo = repository_rule(
163163
)
164164

165165
def _bool_from_environ(rctx, key, default):
166-
return bool(int(repo_utils.getenv(rctx, key, default)))
166+
return bool(int(repo_utils.getenv(rctx, key, default)))

0 commit comments

Comments
 (0)