aboutsummaryrefslogtreecommitdiff
path: root/lib.bzl
diff options
context:
space:
mode:
Diffstat (limited to 'lib.bzl')
-rw-r--r--lib.bzl12
1 files changed, 6 insertions, 6 deletions
diff --git a/lib.bzl b/lib.bzl
index 4674be7..d99e498 100644
--- a/lib.bzl
+++ b/lib.bzl
@@ -14,12 +14,6 @@
"""Index from which multiple modules can be loaded."""
-print(
- "WARNING: lib.bzl is deprecated and will go away in the future, please" +
- " directly load the bzl file(s) of the module(s) needed as it is more" +
- " efficient.",
-)
-
load("//lib:collections.bzl", _collections = "collections")
load("//lib:dicts.bzl", _dicts = "dicts")
load("//lib:new_sets.bzl", _new_sets = "sets")
@@ -33,6 +27,12 @@ load("//lib:types.bzl", _types = "types")
load("//lib:versions.bzl", _versions = "versions")
load("//lib:unittest.bzl", _asserts = "asserts", _unittest = "unittest")
+print(
+ "WARNING: lib.bzl is deprecated and will go away in the future, please" +
+ " directly load the bzl file(s) of the module(s) needed as it is more" +
+ " efficient.",
+)
+
collections = _collections
dicts = _dicts
new_sets = _new_sets