From f0df32be32e2ef5b83ba07f7305d8f35c0d6af45 Mon Sep 17 00:00:00 2001 From: Lilith Hafner Date: Sat, 23 Sep 2023 15:52:22 -0500 Subject: [PATCH] Add more usings --- ext/PyCallExt.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ext/PyCallExt.jl b/ext/PyCallExt.jl index 27c638851e..02d37d632b 100644 --- a/ext/PyCallExt.jl +++ b/ext/PyCallExt.jl @@ -1,7 +1,7 @@ module PyCallExt -using PyCall: PyObject, PyAny, pyfunctionret, pyimport, hasproperty -using SciMLBase: solve +using PyCall: PyCall, PyObject, PyAny, pyfunctionret, pyimport, hasproperty +using SciMLBase: SciMLBase, solve # SciMl uses a function's arity (number of arguments) to determine if it operates in place. # PyCall does not preserve arity, so we inspect Python functions to find their arity.