EinsteinCoder commited on
Commit
8f89c2d
·
1 Parent(s): a29b89a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -138,7 +138,7 @@ def main():
138
  if st.button("Show Insights"):
139
  with st.spinner("Generating Insights..."):
140
  prediction = predict_horoscope(m_sign, f_sign,strtime,m_daily_pred,f_daily_pred,m_monthly_pred,f_monthly_pred,m_weekly_pred,f_weekly_pred)
141
- st.info("Today's is: " + strtime + "| Male (Husband's) Moon Sign: " + m_sign + "| Wife's Moon Sign: " + f_sign)
142
  #st.success("Insight generated!")
143
  st.markdown(prediction)
144
 
 
138
  if st.button("Show Insights"):
139
  with st.spinner("Generating Insights..."):
140
  prediction = predict_horoscope(m_sign, f_sign,strtime,m_daily_pred,f_daily_pred,m_monthly_pred,f_monthly_pred,m_weekly_pred,f_weekly_pred)
141
+ st.info("**Today's is**: " + strtime + " | **Male (Husband's) Moon Sign**: " + m_sign + " | **Wife's Moon Sign**: " + f_sign)
142
  #st.success("Insight generated!")
143
  st.markdown(prediction)
144