remove redundant line ends

This commit is contained in:
Lili (Tlapka) 2024-02-06 18:18:15 +01:00
parent 6641121ca3
commit 894ff175a6
1 changed files with 7 additions and 7 deletions

View File

@ -4,20 +4,20 @@ from tlapbot.owncast_requests import send_chat
def send_help():
message = []
message.append("Tlapbot gives you points for being in chat, and then allows you to spend those points. <br> \n")
message.append(f"People connected to chat receive {current_app.config['POINTS_AMOUNT_GIVEN']} points every {current_app.config['POINTS_CYCLE_TIME']} seconds. <br> \n")
message.append("You can see your points and recent redeems in the Tlapbot dashboard. Look for a button to click under the stream window. <br> \n")
message.append("Tlapbot gives you points for being in chat, and then allows you to spend those points. <br>")
message.append(f"People connected to chat receive {current_app.config['POINTS_AMOUNT_GIVEN']} points every {current_app.config['POINTS_CYCLE_TIME']} seconds. <br>")
message.append("You can see your points and recent redeems in the Tlapbot dashboard. Look for a button to click under the stream window. <br>")
message.append("""Tlapbot commands: <br>
!help to see this help message. <br>
!points to see your points. <br> \n"""
!points to see your points. <br>"""
)
if current_app.config['LIST_REDEEMS']:
message.append("Active redeems: <br> \n")
message.append("Active redeems: <br>")
for redeem, redeem_info in current_app.config['REDEEMS'].items():
if 'info' in redeem_info:
message.append(f"!{redeem} for {redeem_info['price']} points. {redeem_info['info']} <br> \n")
message.append(f"!{redeem} for {redeem_info['price']} points. {redeem_info['info']} <br>")
else:
message.append(f"!{redeem} for {redeem_info['price']} points. <br> \n")
message.append(f"!{redeem} for {redeem_info['price']} points. <br>")
else:
message.append("Check the dashboard for a list of currently active redeems.")
send_chat(''.join(message))