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 1811a9f commit 788617fCopy full SHA for 788617f
src/tmuxp/cli/debug_info.py
@@ -1,3 +1,4 @@
1
+"""CLI for ``tmuxp debug-info`` subcommand."""
2
import argparse
3
import os
4
import pathlib
@@ -19,13 +20,14 @@
19
20
def create_debug_info_subparser(
21
parser: argparse.ArgumentParser,
22
) -> argparse.ArgumentParser:
23
+ """Augment :class:`argparse.ArgumentParser` with ``debug-info`` subcommand."""
24
return parser
25
26
27
def command_debug_info(
28
parser: t.Optional[argparse.ArgumentParser] = None,
29
) -> None:
- """Print debug info to submit with Issues."""
30
+ """Entrypoint for ``tmuxp debug-info`` to print debug info to submit with issues."""
31
32
def prepend_tab(strings: t.List[str]) -> t.List[str]:
33
"""Prepend tab to strings in list."""
0 commit comments