fixed indentation

This commit is contained in:
Cooper Hammond 2020-03-28 01:23:41 -07:00
parent eb3f332521
commit 4e0ba7ec79

View file

@ -6,7 +6,7 @@ require "./list"
class Album < SpotifyList
@music_directory = Config.music_directory
@home_music_directory = Config.music_directory
# Uses the `spotify_searcher` defined in parent `SpotifyList` to find the
# correct metadata of the list
@ -60,6 +60,6 @@ class Album < SpotifyList
end
private def organize(song : Song)
song.organize_it(@music_directory)
song.organize_it(@home_music_directory)
end
end