Skip to content

Commit 8c57b87

Browse files
JOJ0snejus
authored andcommitted
Consistent wording of multi-valued in migrations.py
1 parent 16ad666 commit 8c57b87

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

beets/library/migrations.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def chunks(lst: list[T], n: int) -> Iterator[list[T]]:
2828

2929

3030
class MultiValueFieldMigration(Migration):
31-
"""Backfill multi-value field from legacy single-string values."""
31+
"""Backfill multi-valued field from legacy single-string values."""
3232

3333
str_field: ClassVar[str]
3434
list_field: ClassVar[str]
@@ -94,7 +94,7 @@ def _migrate_data(
9494

9595

9696
class MultiGenreFieldMigration(MultiValueFieldMigration):
97-
"""Backfill multi-value genres from legacy single-string genre data."""
97+
"""Backfill multi-valued genres from legacy single-string genre data."""
9898

9999
str_field = "genre"
100100
list_field = "genres"
@@ -111,28 +111,28 @@ def separators(self) -> list[str]:
111111

112112

113113
class MultiRemixerFieldMigration(MultiValueFieldMigration):
114-
"""Backfill multi-value remixers from legacy single-string remixer data."""
114+
"""Backfill multi-valued remixers from legacy single-string remixer data."""
115115

116116
str_field = "remixer"
117117
list_field = "remixers"
118118

119119

120120
class MultiLyricistFieldMigration(MultiValueFieldMigration):
121-
"""Backfill multi-value lyricists from legacy single-string lyricist data."""
121+
"""Backfill multi-valued lyricists from legacy single-string lyricist data."""
122122

123123
str_field = "lyricist"
124124
list_field = "lyricists"
125125

126126

127127
class MultiComposerFieldMigration(MultiValueFieldMigration):
128-
"""Backfill multi-value composers from legacy single-string composer data."""
128+
"""Backfill multi-valued composers from legacy single-string composer data."""
129129

130130
str_field = "composer"
131131
list_field = "composers"
132132

133133

134134
class MultiArrangerFieldMigration(MultiValueFieldMigration):
135-
"""Backfill multi-value arrangers from legacy single-string arranger data."""
135+
"""Backfill multi-valued arrangers from legacy single-string arranger data."""
136136

137137
str_field = "arranger"
138138
list_field = "arrangers"

0 commit comments

Comments
 (0)