diff options
author | Markus Armbruster <armbru@redhat.com> | 2025-06-04 16:03:53 -0400 |
---|---|---|
committer | John Snow <jsnow@redhat.com> | 2025-06-05 12:10:05 -0400 |
commit | 781e730556f3621a3f5f83e9b6afdc7d306f0094 (patch) | |
tree | ed8e6a639334dd5c2a5a4feb8dd51894d3e2dcfd | |
parent | 65aa0a1780d59ea2b07da6e3626b98eca8b163d1 (diff) | |
download | qemu-781e730556f3621a3f5f83e9b6afdc7d306f0094.zip qemu-781e730556f3621a3f5f83e9b6afdc7d306f0094.tar.gz qemu-781e730556f3621a3f5f83e9b6afdc7d306f0094.tar.bz2 |
python: Drop redundant warn_unused_configs = True
strict = True implies warn_unused_configs = True.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Signed-off-by: John Snow <jsnow@redhat.com>
Reviewed-by: Markus Armbruster <armbru@redhat.com>
Message-id: 20250604200354.459501-6-jsnow@redhat.com
-rw-r--r-- | python/setup.cfg | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/python/setup.cfg b/python/setup.cfg index d21304c..d7f5dc7 100644 --- a/python/setup.cfg +++ b/python/setup.cfg @@ -79,7 +79,6 @@ exclude = __pycache__, [mypy] strict = True python_version = 3.9 -warn_unused_configs = True namespace_packages = True warn_unused_ignores = False |