Skip to content

Commit a001345

Browse files
Bump ty from 0.0.8 to 0.0.12 (#750)
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Tobias Raabe <raabe@posteo.de>
1 parent 9cb4b33 commit a001345

3 files changed

Lines changed: 22 additions & 23 deletions

File tree

src/_pytask/capture.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ def __init__(self, other: TextIO) -> None:
156156
self._other = other
157157
super().__init__()
158158

159-
def write(self, s: str) -> int: # ty: ignore[invalid-method-override]
159+
def write(self, s: str) -> int:
160160
super().write(s)
161161
return self._other.write(s)
162162

src/_pytask/hookspecs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ def pytask_collect_task_setup(
180180
@hookspec(firstresult=True)
181181
def pytask_collect_task(
182182
session: Session, path: Path | None, name: str, obj: Any
183-
) -> PTask: # ty: ignore[invalid-return-type]
183+
) -> PTask: # ty: ignore[empty-body]
184184
"""Collect a single task."""
185185

186186

uv.lock

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

0 commit comments

Comments
 (0)