From 704236a16fd91a8ee257eccc4707d5b58a7b6750 Mon Sep 17 00:00:00 2001
From: Mike Salvatore <mike.s.salvatore@gmail.com>
Date: Wed, 16 Feb 2022 15:31:26 -0500
Subject: [PATCH] Common: Alphabetize TelemCategoryEnum

---
 monkey/common/common_consts/telem_categories.py | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/monkey/common/common_consts/telem_categories.py b/monkey/common/common_consts/telem_categories.py
index d1e931721..70faa73f4 100644
--- a/monkey/common/common_consts/telem_categories.py
+++ b/monkey/common/common_consts/telem_categories.py
@@ -1,12 +1,12 @@
 class TelemCategoryEnum:
+    ATTACK = "attack"
+    AWS_INFO = "aws_info"
+    CREDENTIALS = "credentials"
     EXPLOIT = "exploit"
+    FILE_ENCRYPTION = "file_encryption"
     POST_BREACH = "post_breach"
     SCAN = "scan"
     STATE = "state"
     SYSTEM_INFO = "system_info"
     TRACE = "trace"
     TUNNEL = "tunnel"
-    ATTACK = "attack"
-    FILE_ENCRYPTION = "file_encryption"
-    AWS_INFO = "aws_info"
-    CREDENTIALS = "credentials"