From bd9d768418f8d07403c3dad241d8f581398b94f7 Mon Sep 17 00:00:00 2001 From: Brandon Adams Date: Wed, 28 Sep 2016 11:19:47 -0500 Subject: [PATCH] Fix typo in constructing py-import-obj --- src/clojure_python/core.clj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/clojure_python/core.clj b/src/clojure_python/core.clj index be6141a..c662075 100644 --- a/src/clojure_python/core.clj +++ b/src/clojure_python/core.clj @@ -52,8 +52,8 @@ (cons 'do (map (fn [o#] - `(def ~o# (.__finditem__ ~lib ~(name o#))))) - (cons obj objs))) + `(def ~o# (.__finditem__ ~lib ~(name o#)))) + (cons obj objs)))) (defmacro py-fn "Create a native clojure function applying the python wrapper calls on a python