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/canon.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/canon.py')
-rw-r--r-- | python/libghdl/thin/vhdl/canon.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/python/libghdl/thin/vhdl/canon.py b/python/libghdl/thin/vhdl/canon.py index 48f421618..8cd5637d3 100644 --- a/python/libghdl/thin/vhdl/canon.py +++ b/python/libghdl/thin/vhdl/canon.py @@ -2,13 +2,13 @@ from libghdl import libghdl from ctypes import c_bool Flag_Concurrent_Stmts = c_bool.in_dll( - libghdl, "vhdl__canon__canon_flag_concurrent_stmts") + libghdl, "vhdl__canon__canon_flag_concurrent_stmts" +) -Flag_Configurations = c_bool.in_dll( - libghdl, "vhdl__canon__canon_flag_configurations") +Flag_Configurations = c_bool.in_dll(libghdl, "vhdl__canon__canon_flag_configurations") -Flag_Associations = c_bool.in_dll( - libghdl, "vhdl__canon__canon_flag_associations") +Flag_Associations = c_bool.in_dll(libghdl, "vhdl__canon__canon_flag_associations") -Extract_Sequential_Statement_Chain_Sensitivity = \ +Extract_Sequential_Statement_Chain_Sensitivity = ( libghdl.vhdl__canon__canon_extract_sequential_statement_chain_sensitivity +) |