From a1a920feae7229fdc24e9d73334d7a93d6ad2641 Mon Sep 17 00:00:00 2001 From: Kedar Bellare Date: Sun, 4 Nov 2018 09:53:45 -0800 Subject: [PATCH] Minor style changes --- .../clojure-package/src/org/apache/clojure_mxnet/image.clj | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/contrib/clojure-package/src/org/apache/clojure_mxnet/image.clj b/contrib/clojure-package/src/org/apache/clojure_mxnet/image.clj index d247a9922839..3e4a18945323 100644 --- a/contrib/clojure-package/src/org/apache/clojure_mxnet/image.clj +++ b/contrib/clojure-package/src/org/apache/clojure_mxnet/image.clj @@ -50,8 +50,8 @@ (defn resize-image "Resizes the image array to (width, height)" ([input w h {:keys [interpolation output] - :or {interpolation nil output nil} - :as opts}] + :or {interpolation nil output nil} + :as opts}] (Image/imResize input w h ($/option interpolation) ($/option output))) ([input w h] (resize-image input w h {}))) @@ -79,5 +79,3 @@ "Convert a NDArray image to a real image" [input] (Image/toImage input)) - -