shaina commited on
Commit
6548977
·
1 Parent(s): 0b933d2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -139,7 +139,8 @@ def main():
139
  )
140
  link_ = i['link']
141
  link_ = link_.replace("news.google.com/.", "https://news.google.com")
142
- st.write("""read this [article](link_)""")
 
143
  st.write(" ")
144
 
145
  if __name__ == "__main__":
 
139
  )
140
  link_ = i['link']
141
  link_ = link_.replace("news.google.com/.", "https://news.google.com")
142
+ link_path = "read this [article]" + "(" + link_ + ")"
143
+ st.write(link_path)
144
  st.write(" ")
145
 
146
  if __name__ == "__main__":