Merged
Conversation
We currently have 21 non strict typing issues and 112 strict typing issues. Most of the strict ones come from generic handling. This is the initial step to tackle the non strict errors by ignoring strict errors and adding github actions to check for type errors. Once this is place we move back to using strict types.
Strict pyright mode results in a lot of issues regarding non fully determined types, due to Generics. These are some issues I came across today. We are still far from being clean on pyright.
The request and notification method were defined as str but later overwritten in subclasses with literals. This causes a reportIncompatibleVariableOverride issue. We need to make method generic.
jspahrsummers
approved these changes
Oct 11, 2024
ksteiny
pushed a commit
to ksteiny/python-sdk
that referenced
this pull request
Dec 5, 2025
Fix place_first_triggers_second_order with nested JSON
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Depends on:
This removes strict typing for now. I opened an issue #14 about this. With these changes it typechecks without strict mode for now. This will allow us to create automation on top of the SDK.