From 13a80422a2126df4734b7fad771d8abdccac7ec2 Mon Sep 17 00:00:00 2001 From: Ivan Levkivskyi Date: Thu, 27 Apr 2023 11:41:39 +0100 Subject: [PATCH] Fix mypy --- src/test_cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test_cli.py b/src/test_cli.py index b6c52c4..29f63ef 100644 --- a/src/test_cli.py +++ b/src/test_cli.py @@ -22,7 +22,7 @@ class Exited(Exception): class ParseResult(TypedDict, total=False): - status: int + status: int | str | None args: dict[str, Any] error: bool out: str