Skip to content

Commit

Permalink
Merge pull request krahabb#254 from krahabb/dev
Browse files Browse the repository at this point in the history
fix typing runtime error for hp110 mp3 (krahabb#253)
  • Loading branch information
krahabb authored Feb 6, 2023
2 parents 30f49ed + 69243c5 commit 235229d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion custom_components/meross_lan/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@
"dependencies": ["recorder"],
"after_dependencies": ["mqtt", "dhcp"],
"codeowners": ["@krahabb"],
"version": "3.0.0"
"version": "3.0.1"
}
2 changes: 1 addition & 1 deletion custom_components/meross_lan/media_player.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ def _parse_mp3(self, payload: dict):


class Mp3Mixin(
LightMixin, MerossDevice if typing.TYPE_CHECKING else object
LightMixin if typing.TYPE_CHECKING else object
): # pylint: disable=used-before-assignment
def __init__(self, api, descriptor, entry):
super().__init__(api, descriptor, entry)
Expand Down

0 comments on commit 235229d

Please sign in to comment.