2
0
mirror of https://github.com/Nick80835/microbot synced 2025-08-31 14:38:04 +00:00

remove pointless f-strings

This commit is contained in:
Nick80835
2020-10-10 19:38:21 -04:00
parent ed6d9a62bd
commit 96e7534c8c
6 changed files with 12 additions and 12 deletions

View File

@@ -112,7 +112,7 @@ async def disable_command(event):
await event.reply(f"**{event.args}** is not a command!")
else:
await event.reply(f"Specify a command to disable!")
await event.reply("Specify a command to disable!")
@ldr.add("enable", admin=True, help="Enables commands in the current chat, requires admin.")
@@ -126,7 +126,7 @@ async def enable_command(event):
await event.reply(f"**{event.args}** is not a command!")
else:
await event.reply(f"Specify a command to enable!")
await event.reply("Specify a command to enable!")
@ldr.add("showdisabled", admin=True, help="Shows disabled commands in the current chat.")