From e9c15e39e797b54c4afea95cb590b94e1c5d2d0f Mon Sep 17 00:00:00 2001 From: Michael Spang Date: Tue, 13 Apr 2021 01:05:21 -0400 Subject: [PATCH] happy: Fix static analysis deprecation warning (#5971) 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 = [] }