Total Complexity | 0 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | """Telegram Bot variables for buttons and actions""" |
||
2 | |||
3 | # pylint: disable=C0103 |
||
4 | |||
5 | t = "text" |
||
6 | cbd = "callback_data" |
||
7 | |||
8 | cancel = "cancel" |
||
9 | close = "close" |
||
10 | |||
11 | # marks |
||
12 | mark_language = "lang" |
||
13 | mark_page = "page" |
||
14 | mark_action = "act" |
||
15 | mark_entity = "ent" |
||
16 | mark_record_id = "rid" |
||
17 | mark_slice_start = "ss" |
||
18 | |||
19 | # entities |
||
20 | entity_predy = "ep" |
||
21 | |||
22 | # actions |
||
23 | action_predy_send_card = "apsc" |
||
24 | action_predy_kb_cpx_show = "apkcs" |
||
25 | action_predy_kb_cpx_hide = "apkch" |
||
26 |