Skip to content

Commit

Permalink
Update color.py
Browse files Browse the repository at this point in the history
  • Loading branch information
MrBootsBoots authored Feb 2, 2021
1 parent 8e7e747 commit b7c9bc1
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions tg_bot/modules/color.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,38 @@

from tg_bot import dispatcher
from tg_bot.modules.disable import DisableAbleCommandHandler

COLOR4 = (
"Red"
"White",
"Green",
"Yellow",
"Peach",
"Voilet",
"Pink",
"Purple"
)

COLOR6 = (
"Blue"
"Black",
"Golden",
"Silver",
"Indigo",
"Orange",
"Brown"
"Red",
"Green",
"Yellow",
"Peach",
"Purple"

)

@run_async
def color4(bot: Bot, update: Update):
update.message.reply_text(random.choice(COLOR4))

@run_async
def color6(bot: Bot, update: Update):
update.message.reply_text(random.choice(COLOR6))

0 comments on commit b7c9bc1

Please sign in to comment.