From 05250273d79ad1a3f8e13e75ca2ed85810fd7563 Mon Sep 17 00:00:00 2001 From: Michael Spang Date: Mon, 12 Apr 2021 19:17:13 -0400 Subject: [PATCH] happy: Fix static analysis deprecation warning This fixes the following warning: WARNING: The 'lint' option for pw_python_package is deprecated. Instead, use 'static_analysis = []' to disable linting. --- third_party/happy/BUILD.gn | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/third_party/happy/BUILD.gn b/third_party/happy/BUILD.gn index c381c1724dba80..6857850759a301 100644 --- a/third_party/happy/BUILD.gn +++ b/third_party/happy/BUILD.gn @@ -17,5 +17,5 @@ import("$dir_pw_build/python.gni") pw_python_package("happy") { setup = [ "repo/setup.py" ] - lint = false + static_analysis = [] }