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 184ef8d commit 2bf5738Copy full SHA for 2bf5738
src/tmuxp/cli/__init__.py
@@ -1,9 +1,4 @@
1
-"""CLI utilities for tmuxp.
2
-
3
-tmuxp.cli
4
-~~~~~~~~~
5
6
-"""
+"""CLI utilities for tmuxp."""
7
import argparse
8
import logging
9
import os
@@ -45,6 +40,7 @@
45
40
46
41
47
42
def create_parser() -> argparse.ArgumentParser:
43
+ """Create CLI :class:`argparse.ArgumentParser` for tmuxp."""
48
44
parser = argparse.ArgumentParser(prog="tmuxp")
49
parser.add_argument(
50
"--version",
@@ -97,6 +93,8 @@ def create_parser() -> argparse.ArgumentParser:
97
93
98
94
99
95
class CLINamespace(argparse.Namespace):
96
+ """Typed :class:`argparse.Namespace` for tmuxp root-level CLI."""
+
100
log_level: "CLIVerbosity"
101
subparser_name: "CLISubparserName"
102
import_subparser_name: t.Optional["CLIImportSubparserName"]
0 commit comments