diff options
author | eine <eine@users.noreply.github.com> | 2020-08-15 18:07:05 +0200 |
---|---|---|
committer | tgingold <tgingold@users.noreply.github.com> | 2020-08-23 21:21:15 +0200 |
commit | 4abeb0683159cdc4482a7f491340bfedf3fe2339 (patch) | |
tree | 9670c82ea88c9d6338ee2be58ea291154ffcaf8b /python/libghdl/thin/vhdl/lists.py | |
parent | 8789de969e6673b195cbb28a692cc3fbbaa806e1 (diff) | |
download | ghdl-4abeb0683159cdc4482a7f491340bfedf3fe2339.tar.gz ghdl-4abeb0683159cdc4482a7f491340bfedf3fe2339.tar.bz2 ghdl-4abeb0683159cdc4482a7f491340bfedf3fe2339.zip |
python: execute 'black'
Diffstat (limited to 'python/libghdl/thin/vhdl/lists.py')
-rw-r--r-- | python/libghdl/thin/vhdl/lists.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/python/libghdl/thin/vhdl/lists.py b/python/libghdl/thin/vhdl/lists.py index 8fc180073..bcaecb89b 100644 --- a/python/libghdl/thin/vhdl/lists.py +++ b/python/libghdl/thin/vhdl/lists.py @@ -3,10 +3,10 @@ from ctypes import c_int32, c_bool, POINTER, Structure List_Type = c_int32 + class Iterator(Structure): - _fields_ = [("chunk", c_int32), - ("chunk_idx", c_int32), - ("remain", c_int32)] + _fields_ = [("chunk", c_int32), ("chunk_idx", c_int32), ("remain", c_int32)] + Iterate = libghdl.vhdl__lists__iterate Iterate.argstype = [List_Type] |