fix(event): don't attempt to import exceptiongroup if running python 3.11+

This commit is contained in:
Actionless Loveless 2024-06-30 22:01:43 +02:00 committed by GitHub
parent 7d2c52bd6b
commit f9623421c7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -3,9 +3,11 @@
This module provides API for event management.
"""
from sys import version_info
from typing import Callable, Set, Type
from exceptiongroup import ExceptionGroup
if version_info < (3, 11):
from exceptiongroup import ExceptionGroup
from generic.registry import Registry, TypeAxis