jarvisx17 commited on
Commit
5c1cf00
1 Parent(s): 4facba2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -102,7 +102,7 @@ with tabs[1]:
102
  with col3:
103
  purchase_price = st.number_input("Edit Purchase Price", min_value=0.0, value=selected_sale['Purchase Price'], key="edit_stock_sale_purchase_price")
104
  with col4:
105
- sell_quantity = st.number_input("Quantity", min_value=0.0, value=selected_sale['Quantity'], key="edit_stock_sale_qty")
106
  with col5:
107
  holding_period_months = st.number_input("Edit Holding Period (Months)", min_value=0, value=selected_sale['Holding Period (Months)'], key="edit_stock_sale_holding_period")
108
 
 
102
  with col3:
103
  purchase_price = st.number_input("Edit Purchase Price", min_value=0.0, value=selected_sale['Purchase Price'], key="edit_stock_sale_purchase_price")
104
  with col4:
105
+ sell_quantity = st.number_input("Quantity", min_value=0, value=selected_sale['Quantity'], key="edit_stock_sale_qty")
106
  with col5:
107
  holding_period_months = st.number_input("Edit Holding Period (Months)", min_value=0, value=selected_sale['Holding Period (Months)'], key="edit_stock_sale_holding_period")
108