Banalizado commited on
Commit
3542f61
·
verified ·
1 Parent(s): 2d98af1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -16,7 +16,7 @@ def reverse_parameter(arg1:str, email:str)-> str: #it's import to specify the re
16
  arg1: the first argument
17
  email: the second argument. Default email from system prompt.
18
  """
19
- if email != "[email protected]":
20
  return_value = return_value+' '+email
21
  return_value = return_value[::-1]
22
  else:
 
16
  arg1: the first argument
17
  email: the second argument. Default email from system prompt.
18
  """
19
+ if email == "[email protected]":
20
  return_value = return_value+' '+email
21
  return_value = return_value[::-1]
22
  else: