diff options
author | Patrick Lehmann <Patrick.Lehmann@plc2.de> | 2021-06-26 18:47:45 +0200 |
---|---|---|
committer | Patrick Lehmann <Patrick.Lehmann@plc2.de> | 2021-07-01 06:39:46 +0200 |
commit | 06e53f991bee84c881cbea64bb9f7067d9d033fc (patch) | |
tree | 7ccf710a07be4325aa9ec8351310149696178a01 /pyGHDL/libghdl/vhdl/nodes_utils.py | |
parent | 2492b5595c7a61e29096a217e46f9dfe2e0fd6ac (diff) | |
download | ghdl-06e53f991bee84c881cbea64bb9f7067d9d033fc.tar.gz ghdl-06e53f991bee84c881cbea64bb9f7067d9d033fc.tar.bz2 ghdl-06e53f991bee84c881cbea64bb9f7067d9d033fc.zip |
Fix Codacy problems.
Diffstat (limited to 'pyGHDL/libghdl/vhdl/nodes_utils.py')
-rw-r--r-- | pyGHDL/libghdl/vhdl/nodes_utils.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/pyGHDL/libghdl/vhdl/nodes_utils.py b/pyGHDL/libghdl/vhdl/nodes_utils.py index 7cecb6825..31d495d85 100644 --- a/pyGHDL/libghdl/vhdl/nodes_utils.py +++ b/pyGHDL/libghdl/vhdl/nodes_utils.py @@ -48,6 +48,7 @@ def Strip_Denoting_Name(Name: Iir) -> Iir: :param Name: Simple or an expanded name. :return: Denoted declaration. """ + return 0 @export @@ -60,6 +61,7 @@ def Get_Entity(Decl: Iir) -> Iir: :param Decl: Declaration :return: Entity """ + return 0 @export @@ -73,6 +75,7 @@ def Is_Second_Subprogram_Specification(Spec: Iir) -> bool: :param Spec: Specification :return: ``True`` if subprogram specification and previously declared subprogram body match """ + return False @export @@ -87,6 +90,7 @@ def Get_Entity_From_Entity_Aspect(Aspect: Iir) -> Iir: :param Aspect: Aspect :return: Entity """ + return 0 @export @@ -99,3 +103,4 @@ def Get_Interface_Of_Formal(Formal: Iir) -> Iir: :param Formal: The formal. :return: The corresponding interface. """ + return 0 |