Skip to content

Commit 08121c3

Browse files
dependabot[bot]MateoLostanlenclaude
authored
build(deps): bump the quality group across 1 directory with 3 updates (#681)
* build(deps): bump the quality group across 1 directory with 3 updates Bumps the quality group with 3 updates in the / directory: [ruff](https://github.com/astral-sh/ruff), [ty](https://github.com/astral-sh/ty) and [prek](https://github.com/j178/prek). Updates `ruff` from 0.16.1 to 0.16.5 - [Release notes](https://github.com/astral-sh/ruff/releases) - [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md) - [Commits](astral-sh/ruff@0.16.1...0.16.5) Updates `ty` from 0.0.69 to 0.0.75 - [Release notes](https://github.com/astral-sh/ty/releases) - [Changelog](https://github.com/astral-sh/ty/blob/main/CHANGELOG.md) - [Commits](astral-sh/ty@0.0.69...0.0.75) Updates `prek` from 0.4.12 to 0.5.0 - [Release notes](https://github.com/j178/prek/releases) - [Changelog](https://github.com/j178/prek/blob/master/CHANGELOG.md) - [Commits](j178/prek@v0.4.12...v0.5.0) --- updated-dependencies: - dependency-name: prek dependency-version: 0.4.14 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: quality - dependency-name: ruff dependency-version: 0.16.3 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: quality - dependency-name: ty dependency-version: 0.0.72 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: quality ... Signed-off-by: dependabot[bot] <support@github.com> * fix(alerts): update ty ignore code for ty 0.0.14 ty now reports SelectOfScalar[Alert] as invalid-type-form instead of not-subscriptable. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Mateo <mateo.lostanlen@gmail.com> Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
1 parent c1e8349 commit 08121c3

3 files changed

Lines changed: 1400 additions & 1400 deletions

File tree

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,9 @@ server = [
4444
"pytz>=2024.1",
4545
]
4646
quality = [
47-
"ruff==0.16.1",
48-
"ty==0.0.69",
49-
"prek==0.4.12",
47+
"ruff==0.16.5",
48+
"ty==0.0.75",
49+
"prek==0.5.0",
5050
"types-requests>=2.33.0.20260712",
5151
"types-python-dateutil>=2.9.0.20260807,<3.0.0",
5252
"sqlalchemy-stubs>=0.4,<0.5",

src/app/api/api_v1/endpoints/alerts.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ def _serialize_alert(
148148

149149
async def _serialize_alerts_page(
150150
session: AsyncSession,
151-
alerts_stmt: SelectOfScalar[Alert], # ty: ignore[not-subscriptable]
151+
alerts_stmt: SelectOfScalar[Alert], # ty: ignore[invalid-type-form]
152152
seq_filter: Union[ColumnElement[bool], None],
153153
) -> List[AlertReadWithSequences]:
154154
"""Run an alert-selecting statement and hydrate each row with its filtered sequences and detection counts."""

0 commit comments

Comments
 (0)