Skip to content

Commit

Permalink
Fix black
Browse files Browse the repository at this point in the history
  • Loading branch information
LiaoU3 committed Apr 17, 2024
1 parent 31ce7d7 commit f70e38e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions providers/base/bin/watchdog_config_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@
# You should have received a copy of the GNU General Public License
# along with Checkbox. If not, see <http://www.gnu.org/licenses/>.

'''
"""
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
Expand All @@ -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()

Expand Down

0 comments on commit f70e38e

Please sign in to comment.