MilesCranmer commited on
Commit
7ea0b2f
1 Parent(s): f333659

Ignore lack of type hints in JuliaCall

Browse files
Files changed (1) hide show
  1. pysr/julia_helpers.py +2 -2
pysr/julia_helpers.py CHANGED
@@ -31,8 +31,8 @@ for k, default in (
31
  os.environ[k] = os.environ.get(k, default)
32
 
33
 
34
- from juliacall import Main as jl
35
- from juliacall import convert as jl_convert
36
 
37
  jl.seval("using Serialization: Serialization")
38
  jl.seval("using PythonCall: PythonCall")
 
31
  os.environ[k] = os.environ.get(k, default)
32
 
33
 
34
+ from juliacall import Main as jl # type: ignore
35
+ from juliacall import convert as jl_convert # type: ignore
36
 
37
  jl.seval("using Serialization: Serialization")
38
  jl.seval("using PythonCall: PythonCall")