We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 019f543 commit fec95e4Copy full SHA for fec95e4
tmuxp/cli.py
@@ -1085,12 +1085,10 @@ def format_tmux_resp(std_resp):
1085
"""
1086
Format tmux command response for tmuxp stdout.
1087
1088
- return '\n'.join(
1089
- [
1090
- *prepend_tab(std_resp.stdout),
1091
- click.style('\n'.join(prepend_tab(std_resp.stderr)), fg='red'),
1092
- ]
1093
- )
+ return [
+ '\n'.join(prepend_tab(std_resp.stdout)),
+ click.style('\n'.join(prepend_tab(std_resp.stderr)), fg='red'),
+ ]
1094
1095
output = [
1096
output_break(),
0 commit comments