Format all build files with buildifier

Change-Id: Ibc3cd5a882cef08470c3866646d7bd56040eeafc
diff --git a/BUILD b/BUILD
index 52f23b5..08f92b1 100644
--- a/BUILD
+++ b/BUILD
@@ -13,6 +13,6 @@
     ],
     resources = glob(["src/main/resources/**/*"]),
     deps = [
-        "//gerrit-util-cli:cli"
+        "//gerrit-util-cli:cli",
     ],
 )
diff --git a/bazlets.bzl b/bazlets.bzl
index 6c4fffc..f089af4 100644
--- a/bazlets.bzl
+++ b/bazlets.bzl
@@ -3,17 +3,16 @@
 NAME = "com_googlesource_gerrit_bazlets"
 
 def load_bazlets(
-    commit,
-    local_path = None
-  ):
-  if not local_path:
-      git_repository(
-          name = NAME,
-          remote = "https://gerrit.googlesource.com/bazlets",
-          commit = commit,
-      )
-  else:
-      native.local_repository(
-          name = NAME,
-          path = local_path,
-      )
+        commit,
+        local_path = None):
+    if not local_path:
+        git_repository(
+            name = NAME,
+            remote = "https://gerrit.googlesource.com/bazlets",
+            commit = commit,
+        )
+    else:
+        native.local_repository(
+            name = NAME,
+            path = local_path,
+        )