Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -63,5 +63,5 @@ def main():
|
|
63 |
# Show prediction
|
64 |
result = '>50K' if result[0] ==1 else '<50K'
|
65 |
st.success('Your Predicted income is' + result)
|
66 |
-
if __name__
|
67 |
main()
|
|
|
63 |
# Show prediction
|
64 |
result = '>50K' if result[0] ==1 else '<50K'
|
65 |
st.success('Your Predicted income is' + result)
|
66 |
+
if __name__ == "__main__":
|
67 |
main()
|