mirror of
https://github.com/home-assistant/core.git
synced 2025-06-25 01:21:51 +02:00
Bump notifications-android-tv to 0.1.5 (#68599)
This commit is contained in:
@ -2,7 +2,7 @@
|
||||
"domain": "nfandroidtv",
|
||||
"name": "Notifications for Android TV / Fire TV",
|
||||
"documentation": "https://www.home-assistant.io/integrations/nfandroidtv",
|
||||
"requirements": ["notifications-android-tv==0.1.3"],
|
||||
"requirements": ["notifications-android-tv==0.1.5"],
|
||||
"codeowners": ["@tkdrob"],
|
||||
"config_flow": true,
|
||||
"iot_class": "local_push",
|
||||
|
@ -1,8 +1,9 @@
|
||||
"""Notifications for Android TV notification service."""
|
||||
from __future__ import annotations
|
||||
|
||||
from io import BufferedReader
|
||||
import logging
|
||||
from typing import Any, BinaryIO
|
||||
from typing import Any
|
||||
|
||||
from notifications_android_tv import Notifications
|
||||
import requests
|
||||
@ -116,7 +117,7 @@ class NFAndroidTVNotificationService(BaseNotificationService):
|
||||
position = None
|
||||
transparency = None
|
||||
bkgcolor = None
|
||||
interrupt = None
|
||||
interrupt = False
|
||||
icon = None
|
||||
image_file = None
|
||||
if data:
|
||||
@ -203,7 +204,7 @@ class NFAndroidTVNotificationService(BaseNotificationService):
|
||||
username: str | None = None,
|
||||
password: str | None = None,
|
||||
auth: str | None = None,
|
||||
) -> bytes | BinaryIO | None:
|
||||
) -> BufferedReader | bytes | None:
|
||||
"""Load image/document/etc from a local path or URL."""
|
||||
try:
|
||||
if url is not None:
|
||||
|
@ -1076,7 +1076,7 @@ niluclient==0.1.2
|
||||
noaa-coops==0.1.8
|
||||
|
||||
# homeassistant.components.nfandroidtv
|
||||
notifications-android-tv==0.1.3
|
||||
notifications-android-tv==0.1.5
|
||||
|
||||
# homeassistant.components.notify_events
|
||||
notify-events==1.0.4
|
||||
|
@ -715,7 +715,7 @@ nettigo-air-monitor==1.2.1
|
||||
nexia==0.9.13
|
||||
|
||||
# homeassistant.components.nfandroidtv
|
||||
notifications-android-tv==0.1.3
|
||||
notifications-android-tv==0.1.5
|
||||
|
||||
# homeassistant.components.notify_events
|
||||
notify-events==1.0.4
|
||||
|
Reference in New Issue
Block a user