From d4b4e6be7d0d326c55b32de158aa0d22ecb0c1df Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Thu, 31 Aug 2023 09:31:53 +0200 Subject: [PATCH] :bug: Fix frontend cljs linter issues --- frontend/src/app/worker/import.cljs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/app/worker/import.cljs b/frontend/src/app/worker/import.cljs index 2e533d894..3fcfe2c68 100644 --- a/frontend/src/app/worker/import.cljs +++ b/frontend/src/app/worker/import.cljs @@ -86,7 +86,7 @@ (progress! context type file nil nil)) ([context type current total] - (keyword? type) + (assert (keyword? type)) (assert (number? current)) (assert (number? total)) (progress! context type nil current total))