Skip to content

Commit bd9d768

Browse files
committed
Fix typo in constructing py-import-obj
1 parent 6a94716 commit bd9d768

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/clojure_python/core.clj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@
5252
(cons 'do
5353
(map
5454
(fn [o#]
55-
`(def ~o# (.__finditem__ ~lib ~(name o#)))))
56-
(cons obj objs)))
55+
`(def ~o# (.__finditem__ ~lib ~(name o#))))
56+
(cons obj objs))))
5757

5858
(defmacro py-fn
5959
"Create a native clojure function applying the python wrapper calls on a python

0 commit comments

Comments
 (0)