From e8a4c01f3f0bc45a7ba1722ad5f80ae5d2fcf166 Mon Sep 17 00:00:00 2001 From: Wout Feys Date: Mon, 10 Feb 2025 16:51:14 +0100 Subject: [PATCH] Fix file name --- end2end/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/end2end/__init__.py b/end2end/__init__.py index 5bb5e714..ec6ca485 100644 --- a/end2end/__init__.py +++ b/end2end/__init__.py @@ -1,4 +1,4 @@ import json -with open('attack_events.json', 'r') as file: +with open('end2end/attack_events.json', 'r') as file: events = json.load(file)