From 93e7037d313992d9e41f2834530a3fba5f50d105 Mon Sep 17 00:00:00 2001 From: Tom Burgin Date: Mon, 6 May 2024 14:31:28 -0400 Subject: [PATCH] non_module_deps.bzl lint fixes --- non_module_deps.bzl | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/non_module_deps.bzl b/non_module_deps.bzl index fa06d4465..87fb9903d 100644 --- a/non_module_deps.bzl +++ b/non_module_deps.bzl @@ -1,6 +1,8 @@ +"""Modules for dependencies not included in the Bazel Central Registry""" + load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository") -def _non_module_deps_impl(ctx): +def _non_module_deps_impl(_): # FMDB is used to access SQLite from Objective-C(++) code. git_repository( name = "FMDB",