From 4b9d967b9322d86dc1de11553b3ac4f79f56e8dd Mon Sep 17 00:00:00 2001 From: Marcin Czenko Date: Mon, 16 Jun 2025 19:00:56 +0200 Subject: [PATCH] removes unneeded asynciter import from indexingstrategy (it uses regular iter and not an async iter) --- codex/indexingstrategy.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codex/indexingstrategy.nim b/codex/indexingstrategy.nim index 99a5d12d..acfffc1a 100644 --- a/codex/indexingstrategy.nim +++ b/codex/indexingstrategy.nim @@ -1,6 +1,6 @@ import ./errors import ./utils -import ./utils/asynciter +import ./utils/iter {.push raises: [].}