From 5cea1e1b724f56bbc7a493052fc4345a9f2a43f0 Mon Sep 17 00:00:00 2001 From: Dan Helfman Date: Sat, 29 Mar 2025 22:52:17 -0700 Subject: [PATCH] Fix flake error (#262). --- borgmatic/commands/borgmatic.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/borgmatic/commands/borgmatic.py b/borgmatic/commands/borgmatic.py index f3281008c..20ce8bca6 100644 --- a/borgmatic/commands/borgmatic.py +++ b/borgmatic/commands/borgmatic.py @@ -955,11 +955,11 @@ def exit_with_help_link(): # pragma: no cover def check_and_show_help_on_no_args(configs): - """ - Check if the 'borgmatic' command is run without any arguments. If the configuration option - 'default_actions' is set to False, show the help message. Otherwise, trigger the - default backup behavior. - """ + ''' + Check if the borgmatic command is run without any arguments. If the configuration option + "default_actions" is set to False, show the help message. Otherwise, trigger the default backup + behavior. + ''' if len(sys.argv) == 1: # No arguments provided default_actions = any(config.get('default_actions', True) for config in configs.values()) if not default_actions: