-
Notifications
You must be signed in to change notification settings - Fork 755
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
Add strict mode to pyright #315
Conversation
30149e3
to
96377b0
Compare
I have a fix locally, I need to push it. |
…ocol/python-sdk into add-strict-mode-pyright
@@ -16,33 +16,36 @@ | |||
<!-- omit in toc --> | |||
## Table of Contents | |||
|
|||
- [Overview](#overview) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
My IDE "fixes" this... It has been like this for years and I never bothered to fix it... If it's not important, I'd appreciate it if we just ignore this.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you
@@ -80,7 +80,7 @@ def pre_parse_json(self, data: dict[str, Any]) -> dict[str, Any]: | |||
dicts (JSON objects) as JSON strings, which can be pre-parsed here. | |||
""" | |||
new_data = data.copy() # Shallow copy | |||
for field_name, field_info in self.arg_model.model_fields.items(): | |||
for field_name, _field_info in self.arg_model.model_fields.items(): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
sounds like we can make this
for field_name, _field_info in self.arg_model.model_fields.items(): | |
for field_name in self.arg_model.model_fields.keys(): |
There are conceptually wrong types in
mcp/types.py
that I can't solve easily.