Skip to content

Commit

Permalink
Fixed issue with last merge
Browse files Browse the repository at this point in the history
  • Loading branch information
lgaddy893 committed Dec 2, 2022
1 parent 3e8751b commit 0ea9581
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -405,9 +405,9 @@ def modifyitem_page():
# case = 1


if case == 0: st.error("Item ID does not exist")
elif case == 1: st.error("Item ID must be an integer")
else:
# if case == 0: st.error("Item ID does not exist")
# elif case == 1: st.error("Item ID must be an integer")
# else:
form = st.form(key='ModifyItemForm')
title = form.text_input('Title:', value= i.title, placeholder= i.title)
desc = form.text_input('Description', value= i.desc, placeholder= i.desc)
Expand Down

0 comments on commit 0ea9581

Please sign in to comment.