Skip to content

Commit bf3ffea

Browse files
committed
types(cli): Fix for missing literal
src/tmuxp/cli/__init__.py:172: error: Non-overlapping equality check (left operand type: Literal['ls'], right operand type: Literal['freeze']) [comparison-overlap]
1 parent 9cc8ad6 commit bf3ffea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tmuxp/cli/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939

4040
CLIVerbosity: TypeAlias = t.Literal["DEBUG", "INFO", "WARNING", "ERROR", "CRITICAL"]
4141
CLISubparserName: TypeAlias = t.Literal[
42-
"ls", "load", "convert", "edit", "import", "shell", "debug-info"
42+
"ls", "load", "freeze", "convert", "edit", "import", "shell", "debug-info"
4343
]
4444
CLIImportSubparserName: TypeAlias = t.Literal["teamocil", "tmuxinator"]
4545

0 commit comments

Comments
 (0)