Skip to content

Commit 788617f

Browse files
committed
cli(debug-info): Note pydocstyle updates
1 parent 1811a9f commit 788617f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/tmuxp/cli/debug_info.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"""CLI for ``tmuxp debug-info`` subcommand."""
12
import argparse
23
import os
34
import pathlib
@@ -19,13 +20,14 @@
1920
def create_debug_info_subparser(
2021
parser: argparse.ArgumentParser,
2122
) -> argparse.ArgumentParser:
23+
"""Augment :class:`argparse.ArgumentParser` with ``debug-info`` subcommand."""
2224
return parser
2325

2426

2527
def command_debug_info(
2628
parser: t.Optional[argparse.ArgumentParser] = None,
2729
) -> None:
28-
"""Print debug info to submit with Issues."""
30+
"""Entrypoint for ``tmuxp debug-info`` to print debug info to submit with issues."""
2931

3032
def prepend_tab(strings: t.List[str]) -> t.List[str]:
3133
"""Prepend tab to strings in list."""

0 commit comments

Comments
 (0)