Skip to content

Commit

Permalink
Format some code (#621)
Browse files Browse the repository at this point in the history
  • Loading branch information
emontnemery authored May 9, 2022
1 parent e5924f4 commit e4c08a1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pychromecast/discovery.py
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,9 @@ def get_value(key):
cast_type = CAST_TYPE_GROUP
manufacturer = MF_GOOGLE
else:
cast_type, manufacturer = CAST_TYPES.get(model_name.lower(), (None, None))
cast_type, manufacturer = CAST_TYPES.get(
model_name.lower(), (None, None)
)
if uuid not in self._devices:
self._devices[uuid] = CastInfo(
{service_info},
Expand Down

0 comments on commit e4c08a1

Please sign in to comment.