Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 883
👷 Replace mypy with ty in precommit#1806
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
Uh oh!
There was an error while loading. Please reload this page.
Changes from all commits
0251f0fa52380b3203f835d9dd595c9b1d5c1b0465732847d2f8efa3dc8593b1dceaa702cd800c49bf7f277366fb511af07aebcc9c6e97e79103510807d9d651b72e1fa6df490f2ea9c9cd8a87fef2ff7a1e581abecee62File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -20,13 +20,13 @@ def where(self, *whereclause: _ColumnExpressionArgument[bool] | bool) -> Self: | ||
| """Return a new `Select` construct with the given expression added to | ||
| its `WHERE` clause, joined to the existing clause via `AND`, if any. | ||
| """ | ||
| return super().where(*whereclause) # type: ignore[arg-type] | ||
| return super().where(*whereclause) | ||
svlandeg marked this conversation as resolved.
Uh oh!There was an error while loading. Please reload this page. | ||
| def having(self, *having: _ColumnExpressionArgument[bool] | bool) -> Self: | ||
| """Return a new `Select` construct with the given expression added to | ||
| its `HAVING` clause, joined to the existing clause via `AND`, if any. | ||
| """ | ||
| return super().having(*having) # type: ignore[arg-type] | ||
| return super().having(*having) | ||
| class Select(SelectBase[_T]): | ||
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
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.
For context: #1806 (comment)