From 991fe5a7f39cf5648de93d8096f8b6b9fd9decb1 Mon Sep 17 00:00:00 2001 From: Patrick Lehmann Date: Tue, 24 Aug 2021 07:43:22 +0200 Subject: [PATCH] Fixed typo for Choices (another place). --- pyVHDLModel/SyntaxModel.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyVHDLModel/SyntaxModel.py b/pyVHDLModel/SyntaxModel.py index b171757ee..8cfddb3c7 100644 --- a/pyVHDLModel/SyntaxModel.py +++ b/pyVHDLModel/SyntaxModel.py @@ -2643,7 +2643,7 @@ def __init__(self, choices: Iterable[ConcurrentChoice], declaredItems: Iterable self._choices = [c for c in choices] @property - def Choises(self) -> List[ConcurrentChoice]: + def Choices(self) -> List[ConcurrentChoice]: return self._choices def __str__(self) -> str: