added space to Fix Lint errors

This commit is contained in:
Johnmfl 2019-06-19 16:52:50 -04:00
parent 64b7a1347b
commit 865ac820d3

View File

@ -423,7 +423,7 @@ class SongsPlugin(Plugin):
""" """
Remove temporary songs from the database Remove temporary songs from the database
""" """
songs = self.manager.get_all_objects(Song, Song.temporary == True) # noqa: E712 songs = self.manager.get_all_objects(Song, Song.temporary == True) # noqa: E712
for song in songs: for song in songs:
self.manager.delete_object(Song, song.id) self.manager.delete_object(Song, song.id)