diff options
author | Patrick Lehmann <Patrick.Lehmann@plc2.de> | 2021-08-23 22:04:28 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-23 22:04:28 +0200 |
commit | c58dff10cb3d4d7f942ecd43169cd4681afe26f1 (patch) | |
tree | 4095a2b7e8f083ca22a9f4ca0424960002d34f9f /pyGHDL/dom/Symbol.py | |
parent | dac2e4dca824f413821962eeac314ceaf56925a7 (diff) | |
parent | 3dddb7dea5cf898f7f05699a7f6aee8906f9ce24 (diff) | |
download | ghdl-c58dff10cb3d4d7f942ecd43169cd4681afe26f1.tar.gz ghdl-c58dff10cb3d4d7f942ecd43169cd4681afe26f1.tar.bz2 ghdl-c58dff10cb3d4d7f942ecd43169cd4681afe26f1.zip |
Set black formatting to 120 chars per line.
Added pyproject.toml
Diffstat (limited to 'pyGHDL/dom/Symbol.py')
-rw-r--r-- | pyGHDL/dom/Symbol.py | 20 |
1 files changed, 5 insertions, 15 deletions
diff --git a/pyGHDL/dom/Symbol.py b/pyGHDL/dom/Symbol.py index f52afbb18..d290b3d70 100644 --- a/pyGHDL/dom/Symbol.py +++ b/pyGHDL/dom/Symbol.py @@ -70,9 +70,7 @@ class SimpleSubtypeSymbol(VHDLModel_SimpleSubtypeSymbol, DOMMixin): @export -class ConstrainedScalarSubtypeSymbol( - VHDLModel_ConstrainedScalarSubtypeSymbol, DOMMixin -): +class ConstrainedScalarSubtypeSymbol(VHDLModel_ConstrainedScalarSubtypeSymbol, DOMMixin): def __init__(self, node: Iir, subtypeName: Name, rng: Range = None): super().__init__(subtypeName, rng) DOMMixin.__init__(self, node) @@ -83,12 +81,8 @@ class ConstrainedScalarSubtypeSymbol( @export -class ConstrainedCompositeSubtypeSymbol( - VHDLModel_ConstrainedCompositeSubtypeSymbol, DOMMixin -): - def __init__( - self, node: Iir, subtypeName: Name, constraints: List[ConstraintUnion] = None - ): +class ConstrainedCompositeSubtypeSymbol(VHDLModel_ConstrainedCompositeSubtypeSymbol, DOMMixin): + def __init__(self, node: Iir, subtypeName: Name, constraints: List[ConstraintUnion] = None): super().__init__(subtypeName, constraints) DOMMixin.__init__(self, node) @@ -98,9 +92,7 @@ class ConstrainedCompositeSubtypeSymbol( @export -class SimpleObjectOrFunctionCallSymbol( - VHDLModel_SimpleObjectOrFunctionCallSymbol, DOMMixin -): +class SimpleObjectOrFunctionCallSymbol(VHDLModel_SimpleObjectOrFunctionCallSymbol, DOMMixin): @classmethod def parse(cls, node: Iir): from pyGHDL.dom._Translate import GetNameFromNode @@ -110,9 +102,7 @@ class SimpleObjectOrFunctionCallSymbol( @export -class IndexedObjectOrFunctionCallSymbol( - VHDLModel_IndexedObjectOrFunctionCallSymbol, DOMMixin -): +class IndexedObjectOrFunctionCallSymbol(VHDLModel_IndexedObjectOrFunctionCallSymbol, DOMMixin): def __init__(self, node: Iir, name: Name): super().__init__(name) DOMMixin.__init__(self, node) |