diff options
author | Patrick Lehmann <Patrick.Lehmann@plc2.de> | 2022-12-23 23:09:23 +0100 |
---|---|---|
committer | Patrick Lehmann <Patrick.Lehmann@plc2.de> | 2022-12-23 23:44:14 +0100 |
commit | aa8d3e566996f6caa3764cb439c96e8a76fdb3be (patch) | |
tree | d779babc7ba39d5d0402ab53a1cee8e78291fc42 /pyGHDL/dom | |
parent | ef9b2610df3a24c6b9ef32d848a3512a95867834 (diff) | |
download | ghdl-aa8d3e566996f6caa3764cb439c96e8a76fdb3be.tar.gz ghdl-aa8d3e566996f6caa3764cb439c96e8a76fdb3be.tar.bz2 ghdl-aa8d3e566996f6caa3764cb439c96e8a76fdb3be.zip |
We should have asked black first.
Diffstat (limited to 'pyGHDL/dom')
-rw-r--r-- | pyGHDL/dom/DesignUnit.py | 6 | ||||
-rw-r--r-- | pyGHDL/dom/NonStandard.py | 3 |
2 files changed, 6 insertions, 3 deletions
diff --git a/pyGHDL/dom/DesignUnit.py b/pyGHDL/dom/DesignUnit.py index 057a2c8cd..eebf888bc 100644 --- a/pyGHDL/dom/DesignUnit.py +++ b/pyGHDL/dom/DesignUnit.py @@ -49,7 +49,7 @@ from pyVHDLModel import ( LibraryClause as VHDLModel_LibraryClause, UseClause as VHDLModel_UseClause, ContextReference as VHDLModel_ContextReference, - Name + Name, ) from pyVHDLModel.SyntaxModel import ( Entity as VHDLModel_Entity, @@ -62,7 +62,9 @@ from pyVHDLModel.SyntaxModel import ( Component as VHDLModel_Component, GenericInterfaceItem, PortInterfaceItem, - ConcurrentStatement, PackageReferenceSymbol, ContextReferenceSymbol, + ConcurrentStatement, + PackageReferenceSymbol, + ContextReferenceSymbol, ) from pyGHDL.libghdl import utils diff --git a/pyGHDL/dom/NonStandard.py b/pyGHDL/dom/NonStandard.py index 303f2c9c4..14f5e1eac 100644 --- a/pyGHDL/dom/NonStandard.py +++ b/pyGHDL/dom/NonStandard.py @@ -45,7 +45,8 @@ from pyTooling.Decorators import export from pyVHDLModel.SyntaxModel import ( Design as VHDLModel_Design, Library as VHDLModel_Library, - Document as VHDLModel_Document, LibraryReferenceSymbol, PackageReferenceSymbol, ContextReferenceSymbol, + Document as VHDLModel_Document, + LibraryReferenceSymbol, ) from pyGHDL.libghdl import ( |