Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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
|
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:
|