summaryrefslogtreecommitdiff
path: root/qutebrowser/commands/command.py
diff options
context:
space:
mode:
Diffstat (limited to 'qutebrowser/commands/command.py')
-rw-r--r--qutebrowser/commands/command.py27
1 files changed, 8 insertions, 19 deletions
diff --git a/qutebrowser/commands/command.py b/qutebrowser/commands/command.py
index 76a44934e..aaf1763e2 100644
--- a/qutebrowser/commands/command.py
+++ b/qutebrowser/commands/command.py
@@ -1,19 +1,6 @@
-# Copyright 2014-2021 Florian Bruhin (The Compiler) <mail@qutebrowser.org>
+# SPDX-FileCopyrightText: Florian Bruhin (The Compiler) <mail@qutebrowser.org>
#
-# This file is part of qutebrowser.
-#
-# qutebrowser is free software: you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation, either version 3 of the License, or
-# (at your option) any later version.
-#
-# qutebrowser is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with qutebrowser. If not, see <https://www.gnu.org/licenses/>.
+# SPDX-License-Identifier: GPL-3.0-or-later
"""Contains the Command class, a skeleton for a command."""
@@ -76,10 +63,12 @@ class Command:
COUNT_COMMAND_VALUES = [usertypes.CommandValue.count,
usertypes.CommandValue.count_tab]
- def __init__(self, *, handler, name, instance=None, maxsplit=None,
- modes=None, not_modes=None, debug=False, deprecated=False,
- no_cmd_split=False, star_args_optional=False, scope='global',
- backend=None, no_replace_variables=False, tree_tab=False):
+ def __init__(
+ self, *, handler, name, instance=None, maxsplit=None,
+ modes=None, not_modes=None, debug=False, deprecated=False,
+ no_cmd_split=False, star_args_optional=False, scope='global',
+ backend=None, no_replace_variables=False, tree_tab=False,
+ ): # pylint: disable=too-many-arguments
if modes is not None and not_modes is not None:
raise ValueError("Only modes or not_modes can be given!")
if modes is not None: