MilesCranmer commited on
Commit
08f8ef7
1 Parent(s): d39a013

Fix operator selection

Browse files
Files changed (1) hide show
  1. gui/app.py +0 -3
gui/app.py CHANGED
@@ -66,9 +66,6 @@ def greet(
66
  "or check the box 'Ignore Warnings'.",
67
  )
68
 
69
- binary_operators = str(binary_operators).replace("'", '"')
70
- unary_operators = str(unary_operators).replace("'", '"')
71
-
72
  y = np.array(df[col_to_fit])
73
  X = df.drop([col_to_fit], axis=1)
74
 
 
66
  "or check the box 'Ignore Warnings'.",
67
  )
68
 
 
 
 
69
  y = np.array(df[col_to_fit])
70
  X = df.drop([col_to_fit], axis=1)
71