Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Constants for the London underground integration."""
2 
3 from datetime import timedelta
4 
5 DOMAIN = "london_underground"
6 
7 CONF_LINE = "line"
8 
9 
10 SCAN_INTERVAL = timedelta(seconds=30)
11 
12 TUBE_LINES = [
13  "Bakerloo",
14  "Central",
15  "Circle",
16  "District",
17  "DLR",
18  "Elizabeth line",
19  "Hammersmith & City",
20  "Jubilee",
21  "London Overground",
22  "Metropolitan",
23  "Northern",
24  "Piccadilly",
25  "Victoria",
26  "Waterloo & City",
27  "Liberty",
28  "Lioness",
29  "Mildmay",
30  "Suffragette",
31  "Weaver",
32  "Windrush",
33 ]