From 7b7e77c52349460280ca252a131dc1a94e143bb0 Mon Sep 17 00:00:00 2001 From: Ansh5461 Date: Thu, 18 Apr 2024 12:40:57 +0530 Subject: [PATCH] Removed enum --- querent/common/types/querent_event.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/querent/common/types/querent_event.py b/querent/common/types/querent_event.py index 1ceece80..cccb39f2 100644 --- a/querent/common/types/querent_event.py +++ b/querent/common/types/querent_event.py @@ -1,8 +1,7 @@ from typing import Any -from enum import Enum -class EventType(Enum): +class EventType: Graph = "Graph" Vector = "Vector" Terminate="Terminate"