Passed
Push — master ( 449b8d...1f3828 )
by torrua
01:12
created

app.bot.telegram.variables   A

Complexity

Total Complexity 0

Size/Duplication

Total Lines 26
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 15
dl 0
loc 26
rs 10
c 0
b 0
f 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