From 45fb60c530efd04e71e32e4573b21b6f558600bf Mon Sep 17 00:00:00 2001 From: Nicola Soranzo Date: Sat, 28 Oct 2023 17:35:12 +0100 Subject: [PATCH] Ignore UP036 ruff check in check_python.py --- scripts/check_python.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/check_python.py b/scripts/check_python.py index 3ab8f8f71736..99fd1c9fcbe8 100644 --- a/scripts/check_python.py +++ b/scripts/check_python.py @@ -7,7 +7,7 @@ def check_python(): - if sys.version_info[:2] >= (3, 7): + if sys.version_info[:2] >= (3, 7): # noqa: UP036 # supported return else: