Typing: Add overload to Router.add() for function-style endpoints#31
Merged
Typing: Add overload to Router.add() for function-style endpoints#31
Conversation
bblommers
commented
Aug 8, 2025
| methods: t.Optional[t.Iterable[str]] = None, | ||
| **kwargs, | ||
| ) -> Rule: | ||
| """ |
Contributor
Author
There was a problem hiding this comment.
I've copied the entire docstring from the previous overload, including the TODO - I only changed the description of the endpoint-argument. Happy to adjust this!
thrau
approved these changes
Aug 18, 2025
Member
thrau
left a comment
There was a problem hiding this comment.
nice thanks for adding this! i haven't thought about mypy too much, i should do more with it!
1e2a6d9 to
ae015f5
Compare
Contributor
Author
Absolutely! It can be a pain to introduce to an existing codebase, but considering how much (potential) bugs it can catch, definitely worth it 🙂 |
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.
Motivation
One fairly common use case (in my experience) is to use a regular function as an endpoint, i.e.:
Running MyPy on this currently throws an error:
Adding this overload solves the problem, and removes the need to add
type: ignore's all over the place