Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into py3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
tobiasraabe committed Nov 2, 2024
2 parents efb13fc + f93d40f commit 9005d8d
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
Expand Up @@ -29,7 +29,7 @@ repos:
hooks:
- id: sort-all
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.6.9
rev: v0.7.1
hooks:
- id: ruff-format
- id: ruff
Expand Down Expand Up @@ -63,7 +63,7 @@ repos:
- id: nbstripout
exclude: (docs)
- repo: https://github.com/crate-ci/typos
rev: v1.26.0
rev: v1.26.8
hooks:
- id: typos
exclude: (\.ipynb)
Expand Down
2 changes: 1 addition & 1 deletion src/_pytask/capture.py
Original file line number Diff line number Diff line change
Expand Up @@ -452,7 +452,7 @@ def __init__(self, targetfd: int) -> None:
self.syscapture: CaptureBase[str] = SysCapture(targetfd)
else:
self.tmpfile = EncodedFile(
TemporaryFile(buffering=0),
TemporaryFile(buffering=0), # noqa: SIM115
encoding="utf-8",
errors="replace",
newline="",
Expand Down

0 comments on commit 9005d8d

Please sign in to comment.