From 0bbf027a4de139d82e76e1f80080a6a9ae6272af Mon Sep 17 00:00:00 2001 From: Adrian Sampson Date: Sun, 28 Sep 2014 10:22:31 -0700 Subject: [PATCH] Standardize docstring style --- beets/importer.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/beets/importer.py b/beets/importer.py index 8e90f6127..a9a2737a4 100644 --- a/beets/importer.py +++ b/beets/importer.py @@ -650,8 +650,7 @@ class ImportTask(object): self.reimport_metadata(lib) def record_replaced(self, lib): - """ - Records the replaced items and albums in the `replaced_items` + """Records the replaced items and albums in the `replaced_items` and `replaced_albums` dictionaries. """ self.replaced_items = defaultdict(list) @@ -672,8 +671,8 @@ class ImportTask(object): self.replaced_albums[replaced_album.path] = replaced_album def reimport_metadata(self, lib): - """ - For reimports, preserves metadata for reimported items and albums. + """For reimports, preserves metadata for reimported items and + albums. """ if self.is_album: replaced_album = self.replaced_albums.get(self.album.path)