-
Notifications
You must be signed in to change notification settings - Fork 2
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
Replace update methods in db.py
files to not use untyped dict[str, Any]
input.
#485
Open
4 of 8 tasks
Comments
leafty
added a commit
that referenced
this issue
Oct 25, 2024
See #485. Refactor the project update method to used a typed `ProjectPatch` instance. This means that the update code is now type-checked.
This was referenced Oct 25, 2024
leafty
added a commit
that referenced
this issue
Oct 28, 2024
See #485. --------- Co-authored-by: Ralf Grubenmann <[email protected]>
This was referenced Nov 1, 2024
leafty
added a commit
that referenced
this issue
Nov 1, 2024
leafty
added a commit
that referenced
this issue
Nov 4, 2024
leafty
added a commit
that referenced
this issue
Nov 5, 2024
See #485. The session blueprint is also updated to use the `validated_json()` method for API responses.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Using
dict[str, Any]
prevents type-checking frommypy
and can cause bugs, e.g. #483 and #484.List:
The text was updated successfully, but these errors were encountered: