Skip to content

Commit

Permalink
cleanup unused prints
Browse files Browse the repository at this point in the history
  • Loading branch information
erdos committed Nov 16, 2023
1 parent 0b0c4b2 commit 0cb95f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/stencil/eval.clj
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

(defn normal-control-ast->evaled-seq [data function items]
(assert (map? data))
(assert (ifn? function) (pr-str "Not function" function))
(assert (ifn? function))
(assert (or (nil? items) (sequential? items)))
(eduction (mapcat (partial eval-step function data)) items))

Expand Down

0 comments on commit 0cb95f1

Please sign in to comment.