File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -283,21 +283,21 @@ PythonCall.Deps.user_deps_file
283283
284284### Example
285285
286- See https://github.com/cjdoris/FAISS .jl for an example package which wraps the Python FAISS
286+ See [ https://github.com/cjdoris/Faiss .jl ] for an example package which wraps the Python FAISS
287287package.
288288
289289### Precompilation
290290
291291You may not interact with Python during module precompilation. Therefore, instead of
292- ```
292+ ``` julia
293293module MyModule
294294 using PythonCall
295295 const foo = pyimport (" foo" )
296296 bar () = foo. bar () # will crash when called
297297end
298298```
299299you must do
300- ```
300+ ``` julia
301301module MyModule
302302 using PythonCall
303303 const foo = PythonCall. pynew () # initially NULL
You can’t perform that action at this time.
0 commit comments