From 0233b84204766f3e6eefbc773e121a71b827eaf7 Mon Sep 17 00:00:00 2001 From: "Arnout Vandecappelle (Essensium/Mind)" Date: Sat, 8 Jan 2022 09:14:53 +0100 Subject: [PATCH] support/testing: tyest_python_pybind.py: fix flake8 errors support/testing/tests/package/test_python_pybind.py:1:1: F401 'os' imported but unused support/testing/tests/package/test_python_pybind.py:3:1: F401 'subprocess' imported but unused support/testing/tests/package/test_python_pybind.py:6:1: E302 expected 2 blank lines, found 1 1 E302 expected 2 blank lines, found 1 2 F401 'os' imported but unused Signed-off-by: Arnout Vandecappelle (Essensium/Mind) --- support/testing/tests/package/test_python_pybind.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/support/testing/tests/package/test_python_pybind.py b/support/testing/tests/package/test_python_pybind.py index 5e3c3b9cc5..c0af7331a2 100644 --- a/support/testing/tests/package/test_python_pybind.py +++ b/support/testing/tests/package/test_python_pybind.py @@ -1,8 +1,7 @@ -import os import infra -import subprocess from tests.package.test_python import TestPythonPackageBase + class TestPythonPybind (TestPythonPackageBase): __test__ = True config = TestPythonPackageBase.config + \