Skip to content

Commit cc7795a

Browse files
committed
chore(common): Fix formatting
1 parent 45270c1 commit cc7795a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/libtmux/common.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -426,7 +426,9 @@ def has_minimum_version(raises: bool = True) -> bool:
426426
if raises:
427427
raise exc.VersionTooLow(
428428
"libtmux only supports tmux {} and greater. This system"
429-
" has {} installed. Upgrade your tmux to use libtmux.".format(TMUX_MIN_VERSION, get_version())
429+
" has {} installed. Upgrade your tmux to use libtmux.".format(
430+
TMUX_MIN_VERSION, get_version()
431+
)
430432
)
431433
else:
432434
return False

0 commit comments

Comments
 (0)