From d1982ed773bf5c79f6c9ee536bea0ff4de5c6333 Mon Sep 17 00:00:00 2001 From: Jose Leon Date: Wed, 25 Dec 2024 21:22:59 +0000 Subject: [PATCH] FIX support Python 3.8 and 3.13 --- ra_aid/tools/memory.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ra_aid/tools/memory.py b/ra_aid/tools/memory.py index 69dfdd4..e5262e9 100644 --- a/ra_aid/tools/memory.py +++ b/ra_aid/tools/memory.py @@ -1,4 +1,5 @@ -from typing import Dict, List, Any, Union, TypedDict, Optional, Set +from typing import Dict, List, Any, Union, Optional, Set +from typing_extensions import TypedDict class WorkLogEntry(TypedDict): timestamp: str