diff options
author | Daniel Friesel <daniel.friesel@uos.de> | 2020-07-03 12:27:08 +0200 |
---|---|---|
committer | Daniel Friesel <daniel.friesel@uos.de> | 2020-07-03 12:27:08 +0200 |
commit | 59d3fba03d83a7982ac5edf10579bfdc40fafdd4 (patch) | |
tree | 9df012b49765b6e1f6714ce624ee0a5616685070 /bin/analyze-archive.py | |
parent | adaa03cf0247b065e6b3863cf16ad88ee24f5169 (diff) |
blacken more code
Diffstat (limited to 'bin/analyze-archive.py')
-rwxr-xr-x | bin/analyze-archive.py | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/bin/analyze-archive.py b/bin/analyze-archive.py index e23fb9e..9a95c0b 100755 --- a/bin/analyze-archive.py +++ b/bin/analyze-archive.py @@ -645,13 +645,13 @@ if __name__ == "__main__": if param_info(state, attribute): print( "{:10s}: {}".format( - state, param_info(state, attribute)["function"].model_function + state, + param_info(state, attribute)["function"].model_function, ) ) print( "{:10s} {}".format( - "", - param_info(state, attribute)["function"].model_args, + "", param_info(state, attribute)["function"].model_args, ) ) for trans in model.transitions(): @@ -666,9 +666,7 @@ if __name__ == "__main__": ) print( "{:10s} {:10s} {}".format( - "", - "", - param_info(trans, attribute)["function"].model_args, + "", "", param_info(trans, attribute)["function"].model_args, ) ) |