From 29933f691d8abe2a6cfaf7e02d499c373b07cf19 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Rebollo=20P=C3=A9rez?= Date: Tue, 21 Feb 2023 10:15:02 +0000 Subject: [PATCH] style(#3969): fit pep8 tools module --- deps/wazuh_testing/wazuh_testing/tools/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deps/wazuh_testing/wazuh_testing/tools/__init__.py b/deps/wazuh_testing/wazuh_testing/tools/__init__.py index f73e06f54a..de346e9e0d 100644 --- a/deps/wazuh_testing/wazuh_testing/tools/__init__.py +++ b/deps/wazuh_testing/wazuh_testing/tools/__init__.py @@ -110,7 +110,7 @@ def get_service(): else: # Linux, sunos5, darwin, aix... try: output = subprocess.check_output([f"{WAZUH_PATH}/bin/wazuh-control", "info", "-t"], - stderr=subprocess.PIPE).decode('utf-8').strip() + stderr=subprocess.PIPE).decode('utf-8').strip() service = 'wazuh-manager' if service == 'server' else 'wazuh-agent' except Exception: service = 'N/A'