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

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

View File

@ -1,9 +1,11 @@
from __future__ import annotations
from sys import version_info
from typing import Callable
import pytest
from exceptiongroup import ExceptionGroup
if version_info < (3, 11):
from exceptiongroup import ExceptionGroup
from generic.event import Event, Manager