From 4a679749fa1cdb8ca37e5cc557e622c6ab8a1201 Mon Sep 17 00:00:00 2001 From: Joe Rickerby Date: Sun, 16 Oct 2022 12:33:09 +0100 Subject: [PATCH] Suppress pylint warning --- cibuildwheel/windows.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cibuildwheel/windows.py b/cibuildwheel/windows.py index a4dc856f..b62ea846 100644 --- a/cibuildwheel/windows.py +++ b/cibuildwheel/windows.py @@ -177,6 +177,8 @@ def setup_setuptools_cross_compile( env["SETUPTOOLS_USE_DISTUTILS"] = "local" +# these cross-compile setup functions have the same signature by design +# pylint: disable=unused-argument def setup_rust_cross_compile( tmp: Path, python_configuration: PythonConfiguration,