We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e83989d commit 934ec6cCopy full SHA for 934ec6c
tests/client/test_logging_callback.py
@@ -1,4 +1,4 @@
1
-from typing import List, Literal
+from typing import Literal
2
3
import anyio
4
import pytest
@@ -14,7 +14,7 @@
14
15
class LoggingCollector:
16
def __init__(self):
17
- self.log_messages: List[LoggingMessageNotificationParams] = []
+ self.log_messages: list[LoggingMessageNotificationParams] = []
18
19
async def __call__(self, params: LoggingMessageNotificationParams) -> None:
20
self.log_messages.append(params)
0 commit comments