Skip to content

Commit 60619a6

Browse files
committed
cli(ls): Note pydocstyle updates
1 parent db5afd1 commit 60619a6

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/tmuxp/cli/ls.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"""CLI for ``tmuxp ls`` subcommand."""
12
import argparse
23
import os
34
import typing as t
@@ -9,12 +10,14 @@
910
def create_ls_subparser(
1011
parser: argparse.ArgumentParser,
1112
) -> argparse.ArgumentParser:
13+
"""Augment :class:`argparse.ArgumentParser` with ``ls`` subcommand."""
1214
return parser
1315

1416

1517
def command_ls(
1618
parser: t.Optional[argparse.ArgumentParser] = None,
1719
) -> None:
20+
"""Entrypoint for ``tmuxp ls`` subcommand."""
1821
tmuxp_dir = get_workspace_dir()
1922
if os.path.exists(tmuxp_dir) and os.path.isdir(tmuxp_dir):
2023
for f in sorted(os.listdir(tmuxp_dir)):

0 commit comments

Comments
 (0)