mirror of
https://github.com/home-assistant/core.git
synced 2025-07-10 14:57:09 +00:00
Bump python-qbittorrent to 0.4.1 (#30239)
This commit is contained in:
parent
2e07902999
commit
cf7b70dd8c
@ -2,9 +2,7 @@
|
|||||||
"domain": "qbittorrent",
|
"domain": "qbittorrent",
|
||||||
"name": "Qbittorrent",
|
"name": "Qbittorrent",
|
||||||
"documentation": "https://www.home-assistant.io/integrations/qbittorrent",
|
"documentation": "https://www.home-assistant.io/integrations/qbittorrent",
|
||||||
"requirements": [
|
"requirements": ["python-qbittorrent==0.4.1"],
|
||||||
"python-qbittorrent==0.3.1"
|
|
||||||
],
|
|
||||||
"dependencies": [],
|
"dependencies": [],
|
||||||
"codeowners": []
|
"codeowners": []
|
||||||
}
|
}
|
||||||
|
@ -107,7 +107,7 @@ class QBittorrentSensor(Entity):
|
|||||||
def update(self):
|
def update(self):
|
||||||
"""Get the latest data from qBittorrent and updates the state."""
|
"""Get the latest data from qBittorrent and updates the state."""
|
||||||
try:
|
try:
|
||||||
data = self.client.sync()
|
data = self.client.sync_main_data()
|
||||||
self._available = True
|
self._available = True
|
||||||
except RequestException:
|
except RequestException:
|
||||||
_LOGGER.error("Connection lost")
|
_LOGGER.error("Connection lost")
|
||||||
|
@ -1601,7 +1601,7 @@ python-nmap==0.6.1
|
|||||||
python-pushover==0.4
|
python-pushover==0.4
|
||||||
|
|
||||||
# homeassistant.components.qbittorrent
|
# homeassistant.components.qbittorrent
|
||||||
python-qbittorrent==0.3.1
|
python-qbittorrent==0.4.1
|
||||||
|
|
||||||
# homeassistant.components.ripple
|
# homeassistant.components.ripple
|
||||||
python-ripple-api==0.0.3
|
python-ripple-api==0.0.3
|
||||||
|
Loading…
x
Reference in New Issue
Block a user