Skip to content
This repository was archived by the owner on Jan 12, 2022. It is now read-only.

Commit e8ec0c2

Browse files
committed
Update music player name to show it's a google play implementation
1 parent 1888706 commit e8ec0c2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

audio_player_wrapper.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ def reset(self):
114114
reset_message = self.audio_player_protocol().reset_message()
115115
self.send_to_audio_player_process(reset_message)
116116

117-
class MusicService:
117+
class GooglePlayMusicService:
118118
def __init__(self, mobile_client):
119119
self._mobile_client = mobile_client
120120

@@ -388,10 +388,10 @@ def get_authenitcated_client():
388388

389389
if __name__ == "__main__":
390390
print("Sign into your Google Music account:\n")
391-
client = get_authenitcated_client()
391+
google_play_client = get_authenitcated_client()
392392

393393
audio_player = AudioPlayer()
394-
music_service = MusicService(client)
394+
music_service = GooglePlayMusicService(google_play_client)
395395

396396
app = Application(audio_player, music_service)
397397

0 commit comments

Comments
 (0)