]> git.ipfire.org Git - thirdparty/starlette.git/commitdiff
Update tests/test__utils.py
authorThomas Grainger <tagrain@gmail.com>
Sun, 29 Dec 2024 15:47:00 +0000 (15:47 +0000)
committerGitHub <noreply@github.com>
Sun, 29 Dec 2024 15:47:00 +0000 (15:47 +0000)
tests/test__utils.py

index e4652ff1bb267fee0750bf4236b74fa47f96c91f..60af813926e8f736b65cc83e5463ae0a3834edb7 100644 (file)
@@ -8,7 +8,7 @@ from starlette._utils import create_collapsing_task_group, get_route_path, is_as
 from starlette.types import Scope
 
 if sys.version_info < (3, 11):  # pragma: no cover
-    from exceptiongroups import ExceptionGroup
+    from exceptiongroup import ExceptionGroup
 
 
 def test_async_func() -> None: