diff options
author | Tristan Gingold <tgingold@free.fr> | 2022-06-26 19:27:53 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2022-06-26 19:28:21 +0200 |
commit | 622e5acfa3269e8001cbd01d3a1345ac199753c3 (patch) | |
tree | 1438049c394b44669cc8c5bdaed0afb701ef24f4 /pyGHDL/lsp | |
parent | 608715f406f68664779d5845b32b999f131dace7 (diff) | |
download | ghdl-622e5acfa3269e8001cbd01d3a1345ac199753c3.tar.gz ghdl-622e5acfa3269e8001cbd01d3a1345ac199753c3.tar.bz2 ghdl-622e5acfa3269e8001cbd01d3a1345ac199753c3.zip |
pyGHDL/lsp/workspace.py: run black
Diffstat (limited to 'pyGHDL/lsp')
-rw-r--r-- | pyGHDL/lsp/workspace.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyGHDL/lsp/workspace.py b/pyGHDL/lsp/workspace.py index d57a4e1bf..c3a575e5d 100644 --- a/pyGHDL/lsp/workspace.py +++ b/pyGHDL/lsp/workspace.py @@ -481,7 +481,7 @@ class Workspace(object): # Extract design unit from entity aspect # Do not care about the architecture. ent = nodes.Get_Entity_Name(el) - ent = nodes.Get_Named_Entity(ent); + ent = nodes.Get_Named_Entity(ent) ent = nodes.Get_Design_Unit(ent) else: assert False, pyutils.kind_image(nodes.Get_Kind(el)) |