aboutsummaryrefslogtreecommitdiffstats
path: root/pyGHDL/dom/Concurrent.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyGHDL/dom/Concurrent.py')
-rw-r--r--pyGHDL/dom/Concurrent.py12
1 files changed, 9 insertions, 3 deletions
diff --git a/pyGHDL/dom/Concurrent.py b/pyGHDL/dom/Concurrent.py
index 754f58f14..693feba27 100644
--- a/pyGHDL/dom/Concurrent.py
+++ b/pyGHDL/dom/Concurrent.py
@@ -552,7 +552,9 @@ class CaseGenerateStatement(VHDLModel_CaseGenerateStatement, DOMMixin):
rng = GetNameFromNode(choiceRange)
else:
pos = Position.parse(alternative)
- raise DOMException(f"Unknown choice range kind '{choiceRangeKind.name}' in case...generate statement at line {pos.Line}.")
+ raise DOMException(
+ f"Unknown choice range kind '{choiceRangeKind.name}' in case...generate statement at line {pos.Line}."
+ )
choice = RangedGenerateChoice(alternative, rng)
if sameAlternative:
@@ -569,7 +571,9 @@ class CaseGenerateStatement(VHDLModel_CaseGenerateStatement, DOMMixin):
continue
else:
pos = Position.parse(alternative)
- raise DOMException(f"Unknown choice kind '{choiceKind.name}' in case...generate statement at line {pos.Line}.")
+ raise DOMException(
+ f"Unknown choice kind '{choiceKind.name}' in case...generate statement at line {pos.Line}."
+ )
if choices is not None:
cases.append(GenerateCase.parse(caseNode, choices))
@@ -625,7 +629,9 @@ class ForGenerateStatement(VHDLModel_ForGenerateStatement, DOMMixin):
rng = GetNameFromNode(discreteRange)
else:
pos = Position.parse(generateNode)
- raise DOMException(f"Unknown discete range kind '{rangeKind.name}' in for...generate statement at line {pos.Line}.")
+ raise DOMException(
+ f"Unknown discete range kind '{rangeKind.name}' in for...generate statement at line {pos.Line}."
+ )
body = nodes.Get_Generate_Statement_Body(generateNode)
declarationChain = nodes.Get_Declaration_Chain(body)