Skip to content

Commit 195ffad

Browse files
⬆ Bump ty from 0.0.32 to 0.0.34 (#1898)
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: svlandeg <sofie.vanlandeghem@gmail.com>
1 parent c31d266 commit 195ffad

2 files changed

Lines changed: 22 additions & 22 deletions

File tree

sqlmodel/sql/_expression_select_cls.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@ def where(self, *whereclause: _ColumnExpressionArgument[bool] | bool) -> Self:
2020
"""Return a new `Select` construct with the given expression added to
2121
its `WHERE` clause, joined to the existing clause via `AND`, if any.
2222
"""
23-
return super().where(*whereclause)
23+
return super().where(*whereclause) # ty: ignore[invalid-argument-type]
2424

2525
def having(self, *having: _ColumnExpressionArgument[bool] | bool) -> Self:
2626
"""Return a new `Select` construct with the given expression added to
2727
its `HAVING` clause, joined to the existing clause via `AND`, if any.
2828
"""
29-
return super().having(*having)
29+
return super().having(*having) # ty: ignore[invalid-argument-type]
3030

3131

3232
class Select(SelectBase[_T]):

uv.lock

Lines changed: 20 additions & 20 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)