2
0
mirror of https://github.com/Nick80835/microbot synced 2025-08-22 10:09:40 +00:00

forgot to remove some stuff

This commit is contained in:
Nick80835 2021-02-16 19:08:52 -05:00
parent 16848b2bf2
commit 2626efa37c

View File

@ -9,9 +9,9 @@ from .fixes import inline_photos
class CommandHandler():
pattern_template = "(?is)^{0}({1})(?: |\n|$|_|@{2}(?: |\n|$|_))(.*)"
simple_pattern_template = "(?is)^({0})(?: |\n|$)(.*)"
raw_pattern_template = "(?is){0}"
pattern_template = "^{0}({1})(?: |\n|$|_|@{2}(?: |\n|$|_))(.*)"
simple_pattern_template = "^({0})(?: |\n|$)(.*)"
raw_pattern_template = "{0}"
incoming_commands = []
inline_photo_commands = []