From f70e38e2fc9af75195d77623db5b3e13b3cc11fe Mon Sep 17 00:00:00 2001 From: liaou3 Date: Wed, 17 Apr 2024 16:09:53 +0800 Subject: [PATCH] Fix black --- providers/base/bin/watchdog_config_test.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/providers/base/bin/watchdog_config_test.py b/providers/base/bin/watchdog_config_test.py index e975e5532..bc7232644 100755 --- a/providers/base/bin/watchdog_config_test.py +++ b/providers/base/bin/watchdog_config_test.py @@ -17,12 +17,12 @@ # You should have received a copy of the GNU General Public License # along with Checkbox. If not, see . -''' +""" Watchdog implementation on both classic and core image no longer rely on watchdogd service since 20.04, with this change watchdog/systemd-config tests only systemd configuration on 20.04 and later series while keeping the original test for prior releases -''' +""" import subprocess import argparse @@ -34,8 +34,8 @@ def watchdog_argparse(): parser = argparse.ArgumentParser() - parser.add_argument('-t', '--check_time', action='store_true') - parser.add_argument('-s', '--check_service', action='store_true') + parser.add_argument("-t", "--check_time", action="store_true") + parser.add_argument("-s", "--check_service", action="store_true") return parser.parse_args()