diff options
author | Eli Schwartz <eschwartz@archlinux.org> | 2022-02-13 14:00:46 -0500 |
---|---|---|
committer | Eli Schwartz <eschwartz@archlinux.org> | 2022-02-16 18:19:13 -0500 |
commit | 996d471f5f04202cc1d72b3f96530df835936a6f (patch) | |
tree | f4eff7017119bb134cc65726fceadf8ad9ac6282 | |
parent | 0b431a6b4a8ff70905619ce787324c05df81b560 (diff) | |
download | meson-996d471f5f04202cc1d72b3f96530df835936a6f.zip meson-996d471f5f04202cc1d72b3f96530df835936a6f.tar.gz meson-996d471f5f04202cc1d72b3f96530df835936a6f.tar.bz2 |
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.
-rw-r--r-- | .flake8 | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |