IronOneAILabs commited on
Commit
7066326
1 Parent(s): 822b2e3

fix syntax - ds

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -54,13 +54,13 @@ def fetch_text(url,api_key):
54
  summary_text = json.loads(response.json())['description']
55
  title_text = json.loads(response.json())['title']
56
 
57
- If maintext_text is None:
58
  maintext_text = ""
59
 
60
- If summary_text is None:
61
  summary_text = ""
62
 
63
- If summary_text is None:
64
  summary_text = ""
65
 
66
 
 
54
  summary_text = json.loads(response.json())['description']
55
  title_text = json.loads(response.json())['title']
56
 
57
+ if maintext_text is None:
58
  maintext_text = ""
59
 
60
+ if summary_text is None:
61
  summary_text = ""
62
 
63
+ if summary_text is None:
64
  summary_text = ""
65
 
66