From 6c1ee3b6e806e219010f47bf5b18eb764f05dfc3 Mon Sep 17 00:00:00 2001 From: Christoph Matthias Kohnen Date: Wed, 15 Nov 2023 13:52:32 +0100 Subject: [PATCH] fix type Signed-off-by: Christoph Matthias Kohnen --- src/misc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/misc.py b/src/misc.py index f01c33fe3..3ffc08ef5 100644 --- a/src/misc.py +++ b/src/misc.py @@ -3,7 +3,7 @@ # Type hints ItemList = list[Graphs.Item] -Limits = tuple(float, float, float, float) +Limits = tuple[float, float, float, float] class ParseError(Exception):