From afa6052a08c1300a482005ffcc6a14faf9ab0ad7 Mon Sep 17 00:00:00 2001 From: KnugiHK <24708955+KnugiHK@users.noreply.github.com> Date: Thu, 24 Oct 2024 19:39:19 +0800 Subject: [PATCH] Add note --- Whatsapp_Chat_Exporter/utility.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Whatsapp_Chat_Exporter/utility.py b/Whatsapp_Chat_Exporter/utility.py index 9f8c45c..3a02411 100644 --- a/Whatsapp_Chat_Exporter/utility.py +++ b/Whatsapp_Chat_Exporter/utility.py @@ -13,6 +13,7 @@ try: from enum import StrEnum, IntEnum except ImportError: # < Python 3.11 + # This should be removed when the support for Python 3.10 ends. from enum import Enum class StrEnum(str, Enum): pass