Format code with yapf

This commit fixes the style issues introduced in 62feb08 according to the output
from yapf.

Details: https://deepsource.io/gh/kokarare1212/librespot-python/transform/1b450b9e-1e63-4993-97ca-d1b30af62800/
This commit is contained in:
deepsource-autofix[bot] 2021-10-19 11:24:32 +00:00 committed by GitHub
parent 62feb08f4e
commit 2451845d08
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -751,7 +751,8 @@ class PlayableContentFeeder:
halt_listener: HaltListener) -> LoadedStream:
episode = self.__session.api().get_metadata_4_episode(episode_id)
if episode.external_url:
return CdnFeedHelper.load_episode_external(self.__session, episode, halt_listener)
return CdnFeedHelper.load_episode_external(self.__session, episode,
halt_listener)
else:
file = audio_quality_picker.get_file(episode.audio)
if file is None: