diff options
author | Birte Kristina Friesel <birte.friesel@uos.de> | 2024-01-09 16:53:52 +0100 |
---|---|---|
committer | Birte Kristina Friesel <birte.friesel@uos.de> | 2024-01-09 16:53:52 +0100 |
commit | d613ebe16e6d127dc72cd49f041400afce68e8a6 (patch) | |
tree | 0cd24c69ec47fad6e4e615b31a9ffb664bffc147 /bin/analyze-archive.py | |
parent | c08ff6c41376a6bba21114a5c552fa82ce1e0632 (diff) |
--show-model=param: show static model where no function has been found
Diffstat (limited to 'bin/analyze-archive.py')
-rwxr-xr-x | bin/analyze-archive.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bin/analyze-archive.py b/bin/analyze-archive.py index b13aa82..5432ffd 100755 --- a/bin/analyze-archive.py +++ b/bin/analyze-archive.py @@ -691,6 +691,8 @@ if __name__ == "__main__": dfatool.cli.print_splitinfo( model.parameters, info, f"{state:10s} {attribute:15s}" ) + elif type(info) is StaticFunction: + dfatool.cli.print_staticinfo(f"{state:10s} {attribute:15s}", info) elif type(info) is SubstateFunction: print(f"{state:10s} {attribute:15s}: Substate (TODO)") for trans in model.transitions: |