diff options
author | Tristan Gingold <tgingold@free.fr> | 2021-02-19 09:44:01 +0100 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2021-02-19 09:44:01 +0100 |
commit | d39d35af0333afffbdeffe23a601a0f79d18a3b6 (patch) | |
tree | 165a0f511bd948029b4b28ea7982b47c6552240f /pyGHDL/lsp | |
parent | 4974ee462a6674d4c85d4178c57e22a9ae7e1cba (diff) | |
download | ghdl-d39d35af0333afffbdeffe23a601a0f79d18a3b6.tar.gz ghdl-d39d35af0333afffbdeffe23a601a0f79d18a3b6.tar.bz2 ghdl-d39d35af0333afffbdeffe23a601a0f79d18a3b6.zip |
pyGHDL/lsp/workspace.py: reformat
Diffstat (limited to 'pyGHDL/lsp')
-rw-r--r-- | pyGHDL/lsp/workspace.py | 5 |
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 |