Skip to content

Commit 20f43c1

Browse files
committed
media_printer.py: Modified text to 'media = deepcopy(list(data))'
1 parent 07e4749 commit 20f43c1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/playback/media_printer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ def media_printer(args, data, units: str | None = "media", media_len=None) -> No
103103
cols = getattr(args, "cols", [])
104104
m_columns = db_utils.columns(args, "media")
105105

106-
media = deepcopy(data)
106+
media = deepcopy(list(data))
107107

108108
if args.verbose >= consts.LOG_DEBUG and cols and "*" in cols:
109109
breakpoint()

0 commit comments

Comments
 (0)