-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconstants.py
More file actions
39 lines (38 loc) · 728 Bytes
/
constants.py
File metadata and controls
39 lines (38 loc) · 728 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
"""
Constant values for the app.
"""
PRICE_TABLE = {
3: {
"weekday": {
"regular": 110,
"rewards": 80
},
"weekend": {
"regular": 90,
"rewards": 80
},
"establishment": ["Economy"]
},
4: {
"weekday": {
"regular": 160,
"rewards": 110
},
"weekend": {
"regular": 60,
"rewards": 50
},
"establishment": ["Medium"]
},
5: {
"weekday": {
"regular": 220,
"rewards": 100
},
"weekend": {
"regular": 150,
"rewards": 40
},
"establishment": ["Luxury"]
}
}