Skip to content

Commit 934ec6c

Browse files
committed
fix
1 parent e83989d commit 934ec6c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/client/test_logging_callback.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from typing import List, Literal
1+
from typing import Literal
22

33
import anyio
44
import pytest
@@ -14,7 +14,7 @@
1414

1515
class LoggingCollector:
1616
def __init__(self):
17-
self.log_messages: List[LoggingMessageNotificationParams] = []
17+
self.log_messages: list[LoggingMessageNotificationParams] = []
1818

1919
async def __call__(self, params: LoggingMessageNotificationParams) -> None:
2020
self.log_messages.append(params)

0 commit comments

Comments
 (0)