From 9e6a9cdb8a547e58104cf8a49474bb0a87f40559 Mon Sep 17 00:00:00 2001 From: Marcel van der Veldt Date: Fri, 29 Jul 2022 11:49:35 +0200 Subject: [PATCH] adjust comments --- music_assistant/mass.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/music_assistant/mass.py b/music_assistant/mass.py index e4144820..66a386e1 100644 --- a/music_assistant/mass.py +++ b/music_assistant/mass.py @@ -41,8 +41,7 @@ class MusicAssistant: """ Create an instance of MusicAssistant. - conf: Music Assistant runtimestartup Config - stream_port: TCP port used for streaming audio. + config: Music Assistant runtimestartup Config session: Optionally provide an aiohttp clientsession """ @@ -103,8 +102,8 @@ class MusicAssistant: if self.closed: return if self.logger.isEnabledFor(logging.DEBUG): - # do not log queue time updated events because that is too chatty if event.type != EventType.QUEUE_TIME_UPDATED: + # do not log queue time updated events because that is too chatty self.logger.getChild("event").debug( "%s %s", event.type.value, event.object_id or "" ) -- 2.34.1