Frida Project: List Comprehension Task 4

Is there any issue using the below to append the items to paintings list for task Task 4 of the Frida project?

add_paintings_list = [('The Broken Column', 1944), ('The Wounded Deer', 1946), ('Me and My Doll', 1937)] [paintings.append(x) for x in add_paintings_list] print(paintings)