Skip to content

Commit

Permalink
[Pthon 3.8] fix typing hint compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
kammoh committed Jul 26, 2023
1 parent fc7e422 commit 54395d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/xeda/design.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 54395d7

Please sign in to comment.