diff --git a/tools/sigma/sigma-to-galaxy.py b/tools/sigma/sigma-to-galaxy.py index 50b8e509..a925ac42 100644 --- a/tools/sigma/sigma-to-galaxy.py +++ b/tools/sigma/sigma-to-galaxy.py @@ -101,7 +101,7 @@ def create_cluster_json(galaxyCluster): This function finally creates the sigma-cluster.json file with all the information. """ with open("sigma-cluster.json", "w") as f: - json.dump(galaxyCluster, f) + json.dump(galaxyCluster, f, default=str) def parseYaml(inputPath, yamlFile):