Skip to content

Commit 9aed7cf

Browse files
committed
linter fix
1 parent 1421958 commit 9aed7cf

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

git/cmd.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -962,9 +962,7 @@ def check_unsafe_options(cls, options: List[str], unsafe_options: List[str]) ->
962962
for option in options:
963963
unsafe_option = canonical_unsafe_options.get(cls._canonicalize_option_name(option))
964964
if unsafe_option is not None:
965-
raise UnsafeOptionError(
966-
f"{unsafe_option} is not allowed, use `allow_unsafe_options=True` to allow it."
967-
)
965+
raise UnsafeOptionError(f"{unsafe_option} is not allowed, use `allow_unsafe_options=True` to allow it.")
968966

969967
AutoInterrupt: TypeAlias = _AutoInterrupt
970968

0 commit comments

Comments
 (0)