aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2021-02-19 09:44:01 +0100
committerTristan Gingold <tgingold@free.fr>2021-02-19 09:44:01 +0100
commitd39d35af0333afffbdeffe23a601a0f79d18a3b6 (patch)
tree165a0f511bd948029b4b28ea7982b47c6552240f
parent4974ee462a6674d4c85d4178c57e22a9ae7e1cba (diff)
downloadghdl-d39d35af0333afffbdeffe23a601a0f79d18a3b6.tar.gz
ghdl-d39d35af0333afffbdeffe23a601a0f79d18a3b6.tar.bz2
ghdl-d39d35af0333afffbdeffe23a601a0f79d18a3b6.zip
pyGHDL/lsp/workspace.py: reformat
-rw-r--r--pyGHDL/lsp/workspace.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/pyGHDL/lsp/workspace.py b/pyGHDL/lsp/workspace.py
index 1a2363d52..db2a6fb12 100644
--- a/pyGHDL/lsp/workspace.py
+++ b/pyGHDL/lsp/workspace.py
@@ -448,10 +448,7 @@ class Workspace(object):
res = []
while inters != nodes.Null_Iir:
res.append(
- {
- "name": name_table.Get_Name_Ptr(
- nodes.Get_Identifier(inters))
- }
+ {"name": name_table.Get_Name_Ptr(nodes.Get_Identifier(inters))}
)
inters = nodes.Get_Chain(inters)
return res