From 54395d70d1cedf0e615d86aec42159afc32e288a Mon Sep 17 00:00:00 2001 From: Kamyar Mohajerani Date: Wed, 26 Jul 2023 12:41:01 -0400 Subject: [PATCH] [Pthon 3.8] fix typing hint compatibility --- src/xeda/design.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xeda/design.py b/src/xeda/design.py index f8b3692d..66adbd9f 100644 --- a/src/xeda/design.py +++ b/src/xeda/design.py @@ -300,7 +300,7 @@ class Clock(XedaBaseModel): class Generator(XedaBaseModel): cwd: Union[None, str] = None executable: Optional[str] = None - args: Union[str, list[str]] = [] + args: Union[str, List[str]] = [] shell: bool = False check: bool = True env: Optional[Dict[str, str]] = None