Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion homeassistant/components/fitbit/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ async def _async_get_fitbit_web_api(self) -> ApiClient:
configuration = Configuration()
configuration.pool_manager = async_get_clientsession(self._hass)
configuration.access_token = token[CONF_ACCESS_TOKEN]
return ApiClient(configuration)
return await self._hass.async_add_executor_job(ApiClient, configuration)

async def async_get_user_profile(self) -> FitbitProfile:
"""Return the user profile from the API."""
Expand Down
2 changes: 1 addition & 1 deletion homeassistant/components/unifiprotect/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
"iot_class": "local_push",
"loggers": ["uiprotect", "unifi_discovery"],
"quality_scale": "platinum",
"requirements": ["uiprotect==10.1.0", "unifi-discovery==1.2.0"],
"requirements": ["uiprotect==10.2.1", "unifi-discovery==1.2.0"],
"ssdp": [
{
"manufacturer": "Ubiquiti Networks",
Expand Down
2 changes: 1 addition & 1 deletion requirements_all.txt

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion requirements_test_all.txt

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion script/hassfest/requirements.py
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,6 @@
# travispy > pytest
"travispy": {"pytest"},
},
"unifiprotect": {"uiprotect": {"async-timeout"}},
"volkszaehler": {"volkszaehler": {"async-timeout"}},
"whirlpool": {"whirlpool-sixth-sense": {"async-timeout"}},
"zamg": {"zamg": {"async-timeout"}},
Expand Down
Loading