Fixed linter errors and increase version to 0.11.2

This commit is contained in:
Sumner Evans
2020-07-31 23:39:28 -06:00
parent 20c8f3b8e9
commit 3f3a3b37fe
2 changed files with 3 additions and 3 deletions

View File

@@ -1 +1 @@
__version__ = "0.11.1"
__version__ = "0.11.2"

View File

@@ -966,7 +966,7 @@ class AdapterManager:
AdapterManager._instance.song_download_progress(
song_id, DownloadProgress(DownloadProgress.Type.CANCELLED),
)
return Result('', is_download=True)
return Result("", is_download=True)
logging.info(f"Downloading {song_id}")
@@ -980,7 +980,7 @@ class AdapterManager:
AdapterManager._instance.song_download_progress(
song_id, DownloadProgress(DownloadProgress.Type.DONE),
)
return Result('', is_download=True)
return Result("", is_download=True)
except CacheMissError:
# The song is not already cached.
if before_download: