chore(): Moves the constants to their own entitiy file
This commit is contained in:
parent
c2e51a9f71
commit
5d5cb2fdab
2 changed files with 9 additions and 4 deletions
|
@ -1,7 +1,4 @@
|
||||||
CARDS = {
|
from src.entities.constants import CARDS
|
||||||
"fibonacci": [0.5, 1, 2, 3, 5, 8, 13, 21, 34, 55, "?"],
|
|
||||||
"tshirt": ["XS", "S", "M", "L", "XL", "XXL", "XXXL", "?"],
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
class Cards:
|
class Cards:
|
||||||
|
|
8
src/entities/constants.py
Normal file
8
src/entities/constants.py
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
"""
|
||||||
|
File containing all constant entities
|
||||||
|
"""
|
||||||
|
|
||||||
|
CARDS = {
|
||||||
|
"fibonacci": [0.5, 1, 2, 3, 5, 8, 13, 21, 34, 55, "?"],
|
||||||
|
"tshirt": ["XS", "S", "M", "L", "XL", "XXL", "XXXL", "?"],
|
||||||
|
}
|
Loading…
Reference in a new issue