From 2a77758ebe13e354cb0aec967bd6812c484b8236 Mon Sep 17 00:00:00 2001 From: Konstantin <78656278+amogus07@users.noreply.github.com> Date: Tue, 27 Aug 2024 10:13:45 +0000 Subject: [PATCH] make comment consistent --- beets/ui/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beets/ui/commands.py b/beets/ui/commands.py index b571a416e..24cae1dd1 100755 --- a/beets/ui/commands.py +++ b/beets/ui/commands.py @@ -663,7 +663,7 @@ class AlbumChange(ChangeRepresentation): suggests for them. """ # Tracks. - # match is an AlbumMatch named tuple, mapping is a dict + # match is an AlbumMatch NamedTuple, mapping is a dict # Sort the pairs by the track_info index (at index 1 of the NamedTuple) pairs = list(self.match.mapping.items()) pairs.sort(key=lambda item_and_track_info: item_and_track_info[1].index)