| Conditions | 4 |
| Total Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | #!/usr/bin/python |
||
| 13 | def sticker_rep(bot, update): |
||
| 14 | for word in keywords: |
||
| 15 | if word in update.message.text: |
||
| 16 | with open(sticker_path, "rb") as sticker: |
||
| 17 | update.message.reply_sticker(sticker) |
||
| 18 | print(datetime.datetime.now(), ">>>", "Sticker", ">>>", update.message.from_user.username) |
||
| 19 | break |
||
| 20 |