Skip to content

Commit

Permalink
Merge pull request #244 from lsst-sqre/u/rra/dependencies
Browse files Browse the repository at this point in the history
Update and adjust for dependencies
  • Loading branch information
rra committed Apr 29, 2024
2 parents f848a0c + 7ba8718 commit 63a0808
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.5.0
rev: v4.6.0
hooks:
- id: check-merge-conflict
- id: check-toml
- id: check-yaml
- id: trailing-whitespace

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.3.3
rev: v0.4.2
hooks:
- id: ruff
args: [--fix, --exit-non-zero-on-fix]
Expand Down
2 changes: 1 addition & 1 deletion src/safir/asyncio.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ async def iterator() -> AsyncIterator[T]:
for item in contents[position:end]:
if item is Ellipsis:
return
yield item # type: ignore[misc]
yield item
position = end
elif contents and contents[-1] is Ellipsis:
return
Expand Down

0 comments on commit 63a0808

Please sign in to comment.