mirror of
https://github.com/home-assistant/core.git
synced 2025-06-24 15:07:07 +00:00
Add scan interval to scrape sensor (#74285)
This commit is contained in:
parent
7094b7e62f
commit
c78c159d72
@ -1,6 +1,7 @@
|
||||
"""Support for getting data from websites with scraping."""
|
||||
from __future__ import annotations
|
||||
|
||||
from datetime import timedelta
|
||||
import logging
|
||||
from typing import Any
|
||||
|
||||
@ -44,6 +45,7 @@ from .const import CONF_INDEX, CONF_SELECT, DEFAULT_NAME, DEFAULT_VERIFY_SSL, DO
|
||||
|
||||
_LOGGER = logging.getLogger(__name__)
|
||||
|
||||
SCAN_INTERVAL = timedelta(minutes=10)
|
||||
ICON = "mdi:web"
|
||||
|
||||
PLATFORM_SCHEMA = PARENT_PLATFORM_SCHEMA.extend(
|
||||
|
Loading…
x
Reference in New Issue
Block a user