Spaces:
Runtime error
Runtime error
Commit
·
d6da36b
1
Parent(s):
736e038
Update app.py
Browse files
app.py
CHANGED
@@ -3,7 +3,7 @@ import streamlit as st
|
|
3 |
|
4 |
def main():
|
5 |
st.title("Phishing Email Filtering Service")
|
6 |
-
uploaded_file = st.file_uploader("Upload a file", type=['eml', 'txt'])
|
7 |
if uploaded_file is not None:
|
8 |
st.success("File uploaded successfully!")
|
9 |
|
|
|
3 |
|
4 |
def main():
|
5 |
st.title("Phishing Email Filtering Service")
|
6 |
+
const uploaded_file = st.file_uploader("Upload a file", type=['eml', 'txt'])
|
7 |
if uploaded_file is not None:
|
8 |
st.success("File uploaded successfully!")
|
9 |
|