Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
|
@@ -198,7 +198,7 @@ def clean_text(text):
|
|
| 198 |
cleaned_text = '\n\n'.join(para for para in cleaned_paragraphs if para)
|
| 199 |
|
| 200 |
return cleaned_text
|
| 201 |
-
|
| 202 |
trust_tip = random.choice(trust_tips)
|
| 203 |
suggestion = random.choice(suggestions)
|
| 204 |
return trust_tip, suggestion
|
|
|
|
| 198 |
cleaned_text = '\n\n'.join(para for para in cleaned_paragraphs if para)
|
| 199 |
|
| 200 |
return cleaned_text
|
| 201 |
+
def get_trust_tip_and_suggestion():
|
| 202 |
trust_tip = random.choice(trust_tips)
|
| 203 |
suggestion = random.choice(suggestions)
|
| 204 |
return trust_tip, suggestion
|