Spaces:
Running
Running
deepsource-autofix[bot]
commited on
Commit
•
6033875
1
Parent(s):
70642f7
Format code with black
Browse filesThis commit fixes the style issues introduced in 70642f7 according to the output
from black.
Details: https://deepsource.io/gh/MilesCranmer/PySR/transform/32bf403b-d6e5-4425-9a88-a4bf1b52c5c3/
- test/test.py +1 -1
test/test.py
CHANGED
@@ -14,7 +14,7 @@ import pickle as pkl
|
|
14 |
import tempfile
|
15 |
|
16 |
DEFAULT_PARAMS = inspect.signature(PySRRegressor.__init__).parameters
|
17 |
-
DEFAULT_NITERATIONS =
|
18 |
DEFAULT_POPULATIONS = DEFAULT_PARAMS["populations"].default
|
19 |
DEFAULT_NCYCLES = DEFAULT_PARAMS["ncyclesperiteration"].default
|
20 |
|
|
|
14 |
import tempfile
|
15 |
|
16 |
DEFAULT_PARAMS = inspect.signature(PySRRegressor.__init__).parameters
|
17 |
+
DEFAULT_NITERATIONS = DEFAULT_PARAMS["niterations"].default
|
18 |
DEFAULT_POPULATIONS = DEFAULT_PARAMS["populations"].default
|
19 |
DEFAULT_NCYCLES = DEFAULT_PARAMS["ncyclesperiteration"].default
|
20 |
|