diff --git a/src/meta_csv/core.cljc b/src/meta_csv/core.cljc index 04223d6..427b283 100644 --- a/src/meta_csv/core.cljc +++ b/src/meta_csv/core.cljc @@ -637,6 +637,8 @@ opts (do (when-not (or (instance? String uri) + (instance? Reader uri) + (instance? java.net.URL uri) (instance? java.io.File uri)) (throw (ex-info "Cannot guess the specs of inputs that are neither String path nor File" {:uri uri}))) (guess-spec uri opts))))