Skip to content

Commit e9c98d0

Browse files
committed
Removed intermediate list when processing offsets in cddb_query_string
1 parent 71c1044 commit e9c98d0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

discid/disc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -413,7 +413,7 @@ def cddb_query_string(self) -> str:
413413
414414
.. seealso:: `CDDB Server Protocol <https://gnudb.org/howtognudb.php>`_
415415
"""
416-
offset_str = " ".join([str(track.offset) for track in self.tracks])
416+
offset_str = " ".join(str(track.offset) for track in self.tracks)
417417
cddb_query_string = (
418418
f"{self.freedb_id} {self.last_track_num} {offset_str} {self.seconds}"
419419
)

0 commit comments

Comments
 (0)