* Use f-strings in integrations starting with F * Use f-strings in tests for integrations starting with F * Use f-strings in integrations starting with G * Use f-strings in tests for integrations starting with G * Fix pylint error * Fix broken test
17 lines
403 B
Python
17 lines
403 B
Python
"""Define constants for the GeoNet NZ Quakes integration."""
|
|
from datetime import timedelta
|
|
|
|
DOMAIN = "geonetnz_quakes"
|
|
|
|
PLATFORMS = ("sensor", "geo_location")
|
|
|
|
CONF_MINIMUM_MAGNITUDE = "minimum_magnitude"
|
|
CONF_MMI = "mmi"
|
|
|
|
FEED = "feed"
|
|
|
|
DEFAULT_FILTER_TIME_INTERVAL = timedelta(days=7)
|
|
DEFAULT_MINIMUM_MAGNITUDE = 0.0
|
|
DEFAULT_MMI = 3
|
|
DEFAULT_RADIUS = 50.0
|
|
DEFAULT_SCAN_INTERVAL = timedelta(minutes=5)
|