Skip to content
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

refactor: Make types.py strictly typechecked. #336

Merged
merged 1 commit into from
Mar 26, 2025
Merged

refactor: Make types.py strictly typechecked. #336

merged 1 commit into from
Mar 26, 2025

Conversation

dsp-ant
Copy link
Member

@dsp-ant dsp-ant commented Mar 20, 2025

We are now making the types module typecheck in strict mode.
This is mostly achieved by passing the correct types to the
generic type variables.

We ran into one specific issue with JSONRPCRequest and
JSONRPCNotification. Both are generic classes that take a
dict[str, Any] as params and just a plain string as method.

However, since the TypeVar for RequestT and NotificationT are
bound to RequestParams and NotificationParams respectively
we get into a type issue.

There are two ways of solving this:

  1. Widen the bound by allowing explicitly for dict[str, Any]
  2. Make JSONRPCRequest and JSONRPCNotificaiton not part of the
    type hierarchy with Request and Notification roots.

It felt most naturally to keep JSONRPCRequest/JSONRPCNotification
part of the type hierarchy and allow for general passing of
dict[str, Any].

This now typechecks.

We are now making the types module typecheck in strict mode.
This is mostly achieved by passing the correct types to the
generic type variables.

We ran into one specific issue with `JSONRPCRequest` and
`JSONRPCNotification`. Both are generic classes that take a
`dict[str, Any]` as params and just a plain string as method.

However, since the TypeVar for `RequestT` and `NotificationT` are
bound to `RequestParams` and `NotificationParams` respectively
we get into a type issue.

There are two ways of solving this:
1. Widen the bound by allowing explicitly for `dict[str, Any]`
2. Make JSONRPCRequest and JSONRPCNotificaiton not part of the
   type hierarchy with Request and Notification roots.

It felt most naturally to keep JSONRPCRequest/JSONRPCNotification
part of the type hierarchy and allow for general passing of
dict[str, Any].

This now typechecks.
@dsp-ant dsp-ant requested review from jerome3o-anthropic, jspahrsummers and Kludex and removed request for jerome3o-anthropic March 20, 2025 17:46
Comment on lines +67 to +70
RequestParamsT = TypeVar("RequestParamsT", bound=RequestParams | dict[str, Any] | None)
NotificationParamsT = TypeVar(
"NotificationParamsT", bound=NotificationParams | dict[str, Any] | None
)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is a bit weird tho... I'd like to spend some minutes checking if we can be a bit stricter here.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'll do it tomorrow.

@dsp-ant dsp-ant merged commit 9a2bb6a into main Mar 26, 2025
7 checks passed
@dsp-ant dsp-ant deleted the fix/typesafe branch March 26, 2025 14:21
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants