We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c35454 commit 8bd08f8Copy full SHA for 8bd08f8
examples/tools/hunting-anomalies/build-lookup-table.py
@@ -84,12 +84,6 @@
84
# Convert defaultdict to regular dict for JSON serialization
85
lookup_table_dict = {k: v for k, v in lookup_table.items()}
86
87
-# Save the lookup table to a JSON file
88
-with open("lookup_table.json", "w") as f:
89
- json.dump(lookup_table_dict, f, indent=4)
90
-
91
-print("Lookup table saved to 'lookup_table.json'.")
92
93
# Save the lookup table to a file for later use
94
with open("lookup_table.pkl", "wb") as f: # type: BinaryIO
95
pickle.dump(lookup_table_dict, f)
0 commit comments