Skip to content

Commit

Permalink
Fix wrong function name
Browse files Browse the repository at this point in the history
  • Loading branch information
AfonsoFGarcia committed Sep 5, 2023
1 parent a68a42c commit 04b5366
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion custom_components/bluecon/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ async def async_unload_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:

return unload_ok

async def async_migrate_entity(hass: HomeAssistant, config_entry: ConfigEntry):
async def async_migrate_entry(hass: HomeAssistant, config_entry: ConfigEntry):
if config_entry.version == 1:
try:
with open("credentials.json", "r") as f:
Expand Down
2 changes: 1 addition & 1 deletion custom_components/bluecon/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"domain": "bluecon",
"name": "Fermax Blue",
"version": "0.1.2",
"version": "0.1.3",
"documentation": "https://hass-bluecon.afonsogarcia.dev/",
"issue_tracker": "https://github.com/AfonsoFGarcia/hass-bluecon/issues",
"requirements": ["bluecon==0.1.0", "aiohttp", "oscrypto", "protobuf", "http-ece"],
Expand Down

0 comments on commit 04b5366

Please sign in to comment.