MilesCranmer commited on
Commit
efb57c1
·
unverified ·
1 Parent(s): 59a445b

Fix order of maxsize parameter

Browse files
Files changed (1) hide show
  1. gui/app.py +1 -1
gui/app.py CHANGED
@@ -16,9 +16,9 @@ os.system("bash install_pysr.sh")
16
 
17
  def greet(
18
  file_obj: tempfile._TemporaryFileWrapper,
19
- maxsize: int,
20
  col_to_fit: str,
21
  niterations: int,
 
22
  binary_operators: list,
23
  unary_operators: list,
24
  force_run: bool,
 
16
 
17
  def greet(
18
  file_obj: tempfile._TemporaryFileWrapper,
 
19
  col_to_fit: str,
20
  niterations: int,
21
+ maxsize: int,
22
  binary_operators: list,
23
  unary_operators: list,
24
  force_run: bool,