Spaces:
Sleeping
Sleeping
deepsource-autofix[bot]
commited on
Commit
•
666d589
1
Parent(s):
bcaffe2
Format code with black
Browse files- pysr/julia_helpers.py +1 -0
pysr/julia_helpers.py
CHANGED
@@ -53,6 +53,7 @@ def _set_julia_project_env(julia_project, is_shared):
|
|
53 |
else:
|
54 |
os.environ["JULIA_PROJECT"] = str(julia_project)
|
55 |
|
|
|
56 |
def _get_io_arg(quiet):
|
57 |
io = "devnull" if quiet else "stderr"
|
58 |
io_arg = f"io={io}" if is_julia_version_greater_eq(version=(1, 6, 0)) else ""
|
|
|
53 |
else:
|
54 |
os.environ["JULIA_PROJECT"] = str(julia_project)
|
55 |
|
56 |
+
|
57 |
def _get_io_arg(quiet):
|
58 |
io = "devnull" if quiet else "stderr"
|
59 |
io_arg = f"io={io}" if is_julia_version_greater_eq(version=(1, 6, 0)) else ""
|