diff options
author | eine <eine@users.noreply.github.com> | 2020-08-27 09:09:55 +0200 |
---|---|---|
committer | eine <eine@users.noreply.github.com> | 2020-08-27 09:09:55 +0200 |
commit | 73991a1048d56e501254bd173c9a72b7f616ae65 (patch) | |
tree | c402a7639a13edce775821562dc529f34f3452c4 /python/libghdl/thin/vhdl/pyutils.py | |
parent | e255df9d0b20261a44ba0103e8e78e9b095fe300 (diff) | |
download | ghdl-73991a1048d56e501254bd173c9a72b7f616ae65.tar.gz ghdl-73991a1048d56e501254bd173c9a72b7f616ae65.tar.bz2 ghdl-73991a1048d56e501254bd173c9a72b7f616ae65.zip |
ci: run black 20.8b1
Diffstat (limited to 'python/libghdl/thin/vhdl/pyutils.py')
-rw-r--r-- | python/libghdl/thin/vhdl/pyutils.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/libghdl/thin/vhdl/pyutils.py b/python/libghdl/thin/vhdl/pyutils.py index d98ae3ca4..ba041d323 100644 --- a/python/libghdl/thin/vhdl/pyutils.py +++ b/python/libghdl/thin/vhdl/pyutils.py @@ -298,7 +298,7 @@ def concurrent_stmts_iter(n): def constructs_iter(n): """Iterator on library unit, concurrent statements and declarations - that appear directly within a declarative part.""" + that appear directly within a declarative part.""" if n == thin.Null_Iir: return k = nodes.Get_Kind(n) @@ -365,7 +365,7 @@ def constructs_iter(n): def sequential_iter(n): """Iterator on sequential statements. The first node must be either - a process or a subprogram body.""" + a process or a subprogram body.""" if n == thin.Null_Iir: return k = nodes.Get_Kind(n) |