awacke1 commited on
Commit
6777090
·
1 Parent(s): babe8c4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -53,7 +53,7 @@ def calculator(text1, operation, text2):
53
  saved = AIMemory(text1 + " " + text2, output)
54
  return output
55
  elif operation == "subtract":
56
- output = generator1(text1) + generator2(text2)
57
  saved = AIMemory(text1 + " " + text2, output)
58
  return output.replace(text1, "").replace(text2, "")
59
  elif operation == "multiply":
 
53
  saved = AIMemory(text1 + " " + text2, output)
54
  return output
55
  elif operation == "subtract":
56
+ output = generator1(text2) + generator2(text1)
57
  saved = AIMemory(text1 + " " + text2, output)
58
  return output.replace(text1, "").replace(text2, "")
59
  elif operation == "multiply":