Skip to content

Commit

Permalink
fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Cuttlas90 committed Mar 3, 2024
1 parent fb8c49c commit 006339d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ def get_nonce_callback():
else:
col1, col2, col3, col4 = st.columns(4)
col1.metric("سود سهم", f"{stock_data[0]["estimatedEPS"]}")
col2.metric("نسبت سود به قیمت", f"{format(stock_data[0]["pe"], ".2f")}")
col2.metric("نسبت سود به قیمت", f"{format(float(stock_data[0]["pe"]), ".2f")}")
col3.metric("P/E صنعت", f"{format(float(stock_data[0]["sectorPE"]), ".2f")}")
col4.metric("درصد سهامداران عمده", f"{format(stock_data[0]["all_holder_percent"], ".2f")}")

Expand Down

0 comments on commit 006339d

Please sign in to comment.