diff options
author | umarcor <unai.martinezcorral@ehu.eus> | 2021-06-22 19:31:18 +0200 |
---|---|---|
committer | umarcor <unai.martinezcorral@ehu.eus> | 2021-06-23 17:09:44 +0200 |
commit | 6e1bbc43fc29528ceaf5d422461206e29e801744 (patch) | |
tree | a3273f25e220b2c69869c4c8376f31e8229dbcda /pyGHDL/lsp/references.py | |
parent | c6283d9a9b40c3e9afeba912fcb13aa9d56b9c52 (diff) | |
download | ghdl-6e1bbc43fc29528ceaf5d422461206e29e801744.tar.gz ghdl-6e1bbc43fc29528ceaf5d422461206e29e801744.tar.bz2 ghdl-6e1bbc43fc29528ceaf5d422461206e29e801744.zip |
fix more codacy issues
Diffstat (limited to 'pyGHDL/lsp/references.py')
-rw-r--r-- | pyGHDL/lsp/references.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pyGHDL/lsp/references.py b/pyGHDL/lsp/references.py index c7d0f730d..44a5f8c13 100644 --- a/pyGHDL/lsp/references.py +++ b/pyGHDL/lsp/references.py @@ -18,7 +18,7 @@ def find_def_chain(first, loc): def find_def(n, loc): - "Return the node at location :param loc:, or None if not under :param n:" + """Return the node at location :param loc:, or None if not under :param n:.""" if n == nodes.Null_Iir: return None k = nodes.Get_Kind(n) @@ -86,7 +86,7 @@ def find_def(n, loc): def goto_definition(n, loc): - "Return the declaration (as a node) under :param loc: or None" + """Return the declaration (as a node) under :param loc: or None.""" ref = find_def(n, loc) log.debug("for loc %u found node %s", loc, ref) if ref is None: |