Update app.py
Browse files
app.py
CHANGED
@@ -146,10 +146,10 @@ if uploaded_files:
|
|
146 |
x=['Resume', 'Jon Description'],
|
147 |
y=['Resume', 'Job Description'])
|
148 |
st.plotly_chart(fig, key="figure 2")
|
149 |
-
else:
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
|
154 |
|
155 |
|
|
|
146 |
x=['Resume', 'Jon Description'],
|
147 |
y=['Resume', 'Job Description'])
|
148 |
st.plotly_chart(fig, key="figure 2")
|
149 |
+
else:
|
150 |
+
st.warning(f"You have reached the maximum upload attempts ({max_attempts}).")
|
151 |
+
if 'upload_count' in st.session_state and st.session_state['upload_count'] > 0:
|
152 |
+
st.info(f"Files uploaded {st.session_state['upload_count']} time(s).")
|
153 |
|
154 |
|
155 |
|