mirror of
https://github.com/home-assistant/core.git
synced 2025-08-12 09:05:15 +02:00
trip time made no sense
This commit is contained in:
@@ -14,8 +14,7 @@ from homeassistant.components.camera import Camera, PLATFORM_SCHEMA,\
|
|||||||
STATE_IDLE, STATE_RECORDING
|
STATE_IDLE, STATE_RECORDING
|
||||||
from homeassistant.core import callback
|
from homeassistant.core import callback
|
||||||
from homeassistant.components.http.view import HomeAssistantView
|
from homeassistant.components.http.view import HomeAssistantView
|
||||||
from homeassistant.const import CONF_NAME, CONF_TIMEOUT, HTTP_BAD_REQUEST,\
|
from homeassistant.const import CONF_NAME, CONF_TIMEOUT, HTTP_BAD_REQUEST
|
||||||
ATTR_LAST_TRIP_TIME
|
|
||||||
from homeassistant.helpers import config_validation as cv
|
from homeassistant.helpers import config_validation as cv
|
||||||
from homeassistant.helpers.event import async_track_point_in_utc_time
|
from homeassistant.helpers.event import async_track_point_in_utc_time
|
||||||
import homeassistant.util.dt as dt_util
|
import homeassistant.util.dt as dt_util
|
||||||
@@ -30,6 +29,7 @@ DEFAULT_NAME = "Push Camera"
|
|||||||
BLANK_IMAGE_SIZE = (640, 480)
|
BLANK_IMAGE_SIZE = (640, 480)
|
||||||
|
|
||||||
ATTR_FILENAME = 'filename'
|
ATTR_FILENAME = 'filename'
|
||||||
|
ATTR_LAST_TRIP = 'last_trip'
|
||||||
|
|
||||||
REQUIREMENTS = ['pillow==5.0.0']
|
REQUIREMENTS = ['pillow==5.0.0']
|
||||||
|
|
||||||
@@ -169,7 +169,7 @@ class PushCamera(Camera):
|
|||||||
"""Return the state attributes."""
|
"""Return the state attributes."""
|
||||||
return {
|
return {
|
||||||
name: value for name, value in (
|
name: value for name, value in (
|
||||||
(ATTR_LAST_TRIP_TIME, self._last_trip),
|
(ATTR_LAST_TRIP, self._last_trip),
|
||||||
(ATTR_FILENAME, self._filename),
|
(ATTR_FILENAME, self._filename),
|
||||||
) if value is not None
|
) if value is not None
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user