kmaurinjones commited on
Commit
98225a2
1 Parent(s): edbb564

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -52,7 +52,7 @@ with open("fun_fax.txt", "r", encoding = "utf-8") as f:
52
  f.close() # closes connection to file
53
 
54
  # print one fun fact
55
- st.write(funnies[random.randint(0, len(fun_fax) - 1)])
56
 
57
  # "thank you" blurb
58
  st.write("\nThanks for checking out SongScope! If you have any feedback or requests for additions to this app, shoot me an email at kmaurinjones@gmail.com.")
 
52
  f.close() # closes connection to file
53
 
54
  # print one fun fact
55
+ st.write(funnies[random.randint(0, len(funnies) - 1)])
56
 
57
  # "thank you" blurb
58
  st.write("\nThanks for checking out SongScope! If you have any feedback or requests for additions to this app, shoot me an email at kmaurinjones@gmail.com.")