Skip to content

Commit

Permalink
fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
kongzii committed Dec 16, 2024
1 parent 0c13ce2 commit 822ff25
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,11 @@ def send_message_part(nft_agent: type[DeployableAgentNFTGameAbstract]) -> None:
message = st.text_area("Write a message to the agent")
default_value = MicrochainAgentKeys().RECEIVER_MINIMUM_AMOUNT
value = st.number_input(
"Value in xDai", min_value=default_value, max_value=0.1, value=default_value
"Value in xDai",
min_value=default_value,
max_value=0.1,
value=default_value,
format="%.5f",
)

if st.button("Send message", disabled=not message):
Expand Down

0 comments on commit 822ff25

Please sign in to comment.