diff options
author | Patrick Lehmann <Patrick.Lehmann@plc2.de> | 2023-04-15 19:10:33 +0200 |
---|---|---|
committer | Patrick Lehmann <Patrick.Lehmann@plc2.de> | 2023-04-15 19:10:33 +0200 |
commit | 636bdef4116fc635b2f4be04db7ab06543085121 (patch) | |
tree | f4d5a7e1097297d1f572cb7bcdf3a98b32eb9409 /pyGHDL/dom/Concurrent.py | |
parent | 9d920a551e9108d9ddc99c87e8f2f5f8744ff418 (diff) | |
download | ghdl-636bdef4116fc635b2f4be04db7ab06543085121.tar.gz ghdl-636bdef4116fc635b2f4be04db7ab06543085121.tar.bz2 ghdl-636bdef4116fc635b2f4be04db7ab06543085121.zip |
Formatting by black.
Diffstat (limited to 'pyGHDL/dom/Concurrent.py')
-rw-r--r-- | pyGHDL/dom/Concurrent.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/pyGHDL/dom/Concurrent.py b/pyGHDL/dom/Concurrent.py index 303b6b96b..ea46b4995 100644 --- a/pyGHDL/dom/Concurrent.py +++ b/pyGHDL/dom/Concurrent.py @@ -224,7 +224,11 @@ class ProcessStatement(VHDLModel_ProcessStatement, DOMMixin): @classmethod def parse(cls, processNode: Iir, label: str, hasSensitivityList: bool) -> "ProcessStatement": - from pyGHDL.dom._Translate import GetName, GetDeclaredItemsFromChainedNodes, GetSequentialStatementsFromChainedNodes + from pyGHDL.dom._Translate import ( + GetName, + GetDeclaredItemsFromChainedNodes, + GetSequentialStatementsFromChainedNodes, + ) sensitivityList = None if hasSensitivityList: |