Skip to content

Commit 2bf5738

Browse files
committed
cli: pydocstyle manual fixes
1 parent 184ef8d commit 2bf5738

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

src/tmuxp/cli/__init__.py

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,4 @@
1-
"""CLI utilities for tmuxp.
2-
3-
tmuxp.cli
4-
~~~~~~~~~
5-
6-
"""
1+
"""CLI utilities for tmuxp."""
72
import argparse
83
import logging
94
import os
@@ -45,6 +40,7 @@
4540

4641

4742
def create_parser() -> argparse.ArgumentParser:
43+
"""Create CLI :class:`argparse.ArgumentParser` for tmuxp."""
4844
parser = argparse.ArgumentParser(prog="tmuxp")
4945
parser.add_argument(
5046
"--version",
@@ -97,6 +93,8 @@ def create_parser() -> argparse.ArgumentParser:
9793

9894

9995
class CLINamespace(argparse.Namespace):
96+
"""Typed :class:`argparse.Namespace` for tmuxp root-level CLI."""
97+
10098
log_level: "CLIVerbosity"
10199
subparser_name: "CLISubparserName"
102100
import_subparser_name: t.Optional["CLIImportSubparserName"]

0 commit comments

Comments
 (0)