From 4803b2fb35f41d7b7a9bdcc86306e8bf1d577b44 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 17 Nov 2025 19:10:00 +0000 Subject: [PATCH 1/2] [pre-commit.ci] pre-commit autoupdate MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit updates: - [github.com/charliermarsh/ruff-pre-commit: v0.14.4 → v0.14.5](https://github.com/charliermarsh/ruff-pre-commit/compare/v0.14.4...v0.14.5) --- .pre-commit-config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 768e2e4..b1eab5f 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -18,7 +18,7 @@ repos: hooks: - id: codespell - repo: 'https://github.com/charliermarsh/ruff-pre-commit' - rev: v0.14.4 + rev: v0.14.5 hooks: - id: ruff args: From 713b36ee280dd8352dbd846a7aae31b0291b5087 Mon Sep 17 00:00:00 2001 From: Greg Pauloski <18683347+gpauloski@users.noreply.github.com> Date: Sat, 22 Nov 2025 10:48:35 -0800 Subject: [PATCH 2/2] Fix Dask future incompatible return type --- taps/executor/dask.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/taps/executor/dask.py b/taps/executor/dask.py index 77d08d5..fdff810 100644 --- a/taps/executor/dask.py +++ b/taps/executor/dask.py @@ -5,6 +5,7 @@ from concurrent.futures import Future from typing import Any from typing import Callable +from typing import cast from typing import Generator from typing import Iterable from typing import Iterator @@ -81,7 +82,8 @@ def submit( [`Future`][concurrent.futures.Future]-like object representing \ the result of the execution of the callable. """ - return self.client.submit(function, *args, **kwargs) + future = self.client.submit(function, *args, **kwargs) + return cast(Future[T], future) def map( self,