From 996d471f5f04202cc1d72b3f96530df835936a6f Mon Sep 17 00:00:00 2001 From: Eli Schwartz Date: Sun, 13 Feb 2022 14:00:46 -0500 Subject: [PATCH] flake8: squelch warnings for star imports even harder mesonbuild.mesonlib is gathering its submodules into one module. We suppressed one warning for it, but another one cropped up instead. --- .flake8 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.flake8 b/.flake8 index dceae29bd..d94bd5e97 100644 --- a/.flake8 +++ b/.flake8 @@ -29,5 +29,5 @@ extend-ignore = # A003: builtin class attribute A003 per-file-ignores = - mesonbuild/mesonlib/__init__.py:F401 + mesonbuild/mesonlib/__init__.py:F401,F403 max-line-length = 120