-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdestination.py
More file actions
43 lines (40 loc) · 960 Bytes
/
destination.py
File metadata and controls
43 lines (40 loc) · 960 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
40
41
42
43
from enum import IntEnum, auto
class Destination(IntEnum):
def _generate_next_value_(name, start, count, last_values):
return count
ATLANTA = auto()
BOSTON = auto()
CALGARY = auto()
CHARLESTON = auto()
CHICAGO = auto()
DALLAS = auto()
DENVER = auto()
DULUTH = auto()
EL_PASO = auto()
HELENA = auto()
HOUSTON = auto()
KANSAS_CITY = auto()
LAS_VEGAS = auto()
LITTLE_ROCK = auto()
LOS_ANGELES = auto()
MIAMI = auto()
MONTREAL = auto()
NASHVILLE = auto()
NEW_ORLEANS = auto()
NEW_YORK = auto()
OKLAHOMA_CITY = auto()
OMAHA = auto()
PHOENIX = auto()
PITTSBURGH = auto()
PORTLAND = auto()
RALEIGH = auto()
SAINT_LOUIS = auto()
SALT_LAKE_CITY = auto()
SAN_FRANCISCO = auto()
SANTA_FE = auto()
SAULT_ST_MARIE = auto()
SEATTLE = auto()
TORONTO = auto()
VANCOUVER = auto()
WASHINGTON = auto()
WINNIPEG = auto()