11 lines
152 B
Python
11 lines
152 B
Python
from tables import Place
|
|
|
|
PLACES = [
|
|
Place(1, 130),
|
|
Place(2, 131),
|
|
Place(3, 132),
|
|
Place(4, 133),
|
|
Place(5, 134),
|
|
Place(6, 135)
|
|
]
|