From 1217817ac20bad1d62ef9322084f6268a9084a87 Mon Sep 17 00:00:00 2001 From: "Arnout Vandecappelle (Essensium/Mind)" Date: Mon, 18 Oct 2021 21:58:21 +0200 Subject: [PATCH] support/testing: sample_python_dbus_next: ignore F821 flake8 error The dbus-next package uses the Python type annotation for dbus types. This is not compatible with the python typing assumption that flake8 makes. Exclude F821 from this line. Fixes: https://gitlab.com/buildroot.org/buildroot/-/jobs/1687009829 partially: support/testing/tests/package/sample_python_dbus_next.py:17:36: F821 undefined name 's' support/testing/tests/package/sample_python_dbus_next.py:17:48: F821 undefined name 's' support/testing/tests/package/sample_python_dbus_next.py:17:56: F821 undefined name 's' Signed-off-by: Arnout Vandecappelle (Essensium/Mind) Signed-off-by: Yann E. MORIN --- support/testing/tests/package/sample_python_dbus_next.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/support/testing/tests/package/sample_python_dbus_next.py b/support/testing/tests/package/sample_python_dbus_next.py index 1fcb76f45a..710bfa8c04 100644 --- a/support/testing/tests/package/sample_python_dbus_next.py +++ b/support/testing/tests/package/sample_python_dbus_next.py @@ -14,7 +14,7 @@ class SampleInterface(ServiceInterface): pass @method() - def ConcatStrings(self, what1: 's', what2: 's') -> 's': + def ConcatStrings(self, what1: 's', what2: 's') -> 's': # noqa: F821 return what1 + what2