summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorBirte Kristina Friesel <birte.friesel@uos.de>2025-03-17 10:46:11 +0100
committerBirte Kristina Friesel <birte.friesel@uos.de>2025-03-17 10:46:11 +0100
commit61880a2d8cc36f306d142c8e63fd84792c449de4 (patch)
tree1fcdef416adac7f6ef6caef0faa3607093200165 /bin
parentfc83d91f138e6440dfdcb9d4fa0bf3fd3a559875 (diff)
Optionally export models with byParam data for easier loading
Diffstat (limited to 'bin')
-rwxr-xr-xbin/analyze-log.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/analyze-log.py b/bin/analyze-log.py
index 3f04e01..0b66bdf 100755
--- a/bin/analyze-log.py
+++ b/bin/analyze-log.py
@@ -292,7 +292,7 @@ def main():
if args.export_model:
print(f"Exporting model to {args.export_model}")
- json_model = model.to_json(with_lut=args.export_model_with_lut)
+ json_model = model.to_json(with_by_param=args.export_model_with_lut)
with open(args.export_model, "w") as f:
json.dump(
json_model, f, indent=2, sort_keys=True, cls=dfatool.utils.NpEncoder