Skip to content

Commit 3457dd3

Browse files
authored
v0.17.1
2 parents 14f9247 + 34911c4 commit 3457dd3

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

pyVHDLModel/SyntaxModel.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1841,7 +1841,7 @@ def __init__(self, identifiers: Iterable[str], mode: Mode, subtype: SubtypeOrSym
18411841

18421842
@export
18431843
class GenericTypeInterfaceItem(Type, GenericInterfaceItem):
1844-
def __init__(self, identifier: str, documentation: str):
1844+
def __init__(self, identifier: str, documentation: str = None):
18451845
super().__init__(identifier, documentation)
18461846
GenericInterfaceItem.__init__(self)
18471847

@@ -1853,21 +1853,21 @@ class GenericSubprogramInterfaceItem(GenericInterfaceItem):
18531853

18541854
@export
18551855
class GenericProcedureInterfaceItem(Procedure, GenericInterfaceItem):
1856-
def __init__(self, identifier: str, documentation: str):
1856+
def __init__(self, identifier: str, documentation: str = None):
18571857
super().__init__(identifier, documentation)
18581858
GenericInterfaceItem.__init__(self)
18591859

18601860

18611861
@export
18621862
class GenericFunctionInterfaceItem(Function, GenericInterfaceItem):
1863-
def __init__(self, identifier: str, documentation: str):
1863+
def __init__(self, identifier: str, documentation: str = None):
18641864
super().__init__(identifier, documentation)
18651865
GenericInterfaceItem.__init__(self)
18661866

18671867

18681868
@export
18691869
class GenericPackageInterfaceItem(GenericInterfaceItem):
1870-
def __init__(self, identifier: str, documentation: str):
1870+
def __init__(self, identifier: str, documentation: str = None):
18711871
# super().__init__(identifier, documentation)
18721872
GenericInterfaceItem.__init__(self)
18731873

pyVHDLModel/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
__email__ = "[email protected]"
4040
__copyright__ = "2016-2022, Patrick Lehmann"
4141
__license__ = "Apache License, Version 2.0"
42-
__version__ = "0.17.0"
42+
__version__ = "0.17.1"
4343

4444

4545
from enum import IntEnum, unique, Enum

0 commit comments

Comments
 (0)