From 51e9764f04da876993a80f6f09910e019eb84446 Mon Sep 17 00:00:00 2001 From: umarcor Date: Tue, 22 Jun 2021 12:26:43 +0200 Subject: fix issues reported by Codacy --- pyGHDL/dom/NonStandard.py | 5 +++-- pyGHDL/dom/_Utils.py | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) (limited to 'pyGHDL/dom') diff --git a/pyGHDL/dom/NonStandard.py b/pyGHDL/dom/NonStandard.py index 9010e392b..4b35e7da2 100644 --- a/pyGHDL/dom/NonStandard.py +++ b/pyGHDL/dom/NonStandard.py @@ -80,8 +80,9 @@ class Design(VHDLModel_Design): self.__ghdl_init() def __ghdl_init(self): - """Initialization: set options and then load libraries.""" - + """ + Initialization: set options and then load libraries. + """ # Initialize libghdl libghdl_finalize() libghdl_initialize() diff --git a/pyGHDL/dom/_Utils.py b/pyGHDL/dom/_Utils.py index 38a85c0c3..2142490e3 100644 --- a/pyGHDL/dom/_Utils.py +++ b/pyGHDL/dom/_Utils.py @@ -59,7 +59,7 @@ def GetIirKindOfNode(node: Iir) -> nodes.Iir_Kind: @export def GetNameOfNode(node: Iir) -> str: - """Return the python string from node :obj:`node` identifier""" + """Return the python string from node :obj:`node` identifier.""" identifier = nodes.Get_Identifier(node) return name_table.Get_Name_Ptr(identifier) -- cgit v1.2.3