Skip to content

Commit df84c46

Browse files
committed
chore(mypy): Typings for cli/debug_info
1 parent 8df5939 commit df84c46

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/tmuxp/cli/debug_info.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,19 +29,19 @@ def command_debug_info(
2929
Print debug info to submit with Issues.
3030
"""
3131

32-
def prepend_tab(strings):
32+
def prepend_tab(strings: t.List[str]) -> t.List[str]:
3333
"""
3434
Prepend tab to strings in list.
3535
"""
3636
return ["\t%s" % x for x in strings]
3737

38-
def output_break():
38+
def output_break() -> str:
3939
"""
4040
Generate output break.
4141
"""
4242
return "-" * 25
4343

44-
def format_tmux_resp(std_resp):
44+
def format_tmux_resp(std_resp: tmux_cmd) -> str:
4545
"""
4646
Format tmux command response for tmuxp stdout.
4747
"""

0 commit comments

Comments
 (0)