From 172a1f9f35420aee878765ef04cc43a68577a999 Mon Sep 17 00:00:00 2001 From: "Daniel A. Wozniak" Date: Thu, 21 Sep 2023 14:09:50 -0700 Subject: [PATCH] Fix linter --- tests/pytests/scenarios/cluster/conftest.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/pytests/scenarios/cluster/conftest.py b/tests/pytests/scenarios/cluster/conftest.py index be0c3800094..d49f3341251 100644 --- a/tests/pytests/scenarios/cluster/conftest.py +++ b/tests/pytests/scenarios/cluster/conftest.py @@ -1,9 +1,6 @@ import logging -import subprocess -import pytest - -import salt.utils.platform +# pylint: disable=unused-import from tests.pytests.integration.cluster.conftest import ( cluster_cache_path, cluster_master_1, @@ -14,4 +11,7 @@ from tests.pytests.integration.cluster.conftest import ( cluster_shared_path, ) +# pylint: enable=unused-import + + log = logging.getLogger(__name__)