Skip to content

Add strict mode to pyright #315

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 12 commits into from
Mar 20, 2025
Merged
Prev Previous commit
Next Next commit
fix
  • Loading branch information
Kludex committed Mar 20, 2025
commit 934ec6cb4b9b050dcd46839e54ca9a913b861258
4 changes: 2 additions & 2 deletions tests/client/test_logging_callback.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from typing import List, Literal
from typing import Literal

import anyio
import pytest
Expand All @@ -14,7 +14,7 @@

class LoggingCollector:
def __init__(self):
self.log_messages: List[LoggingMessageNotificationParams] = []
self.log_messages: list[LoggingMessageNotificationParams] = []

async def __call__(self, params: LoggingMessageNotificationParams) -> None:
self.log_messages.append(params)
Expand Down
Loading