Spot the bug in the tuple key

from Tuples
Python 3.14 beginner 4 min 1 issue to find

Find why storing this location record fails before the final print.

Python
locations = {}
coordinates = [48.86, 2.35]
key = ("Paris", coordinates)

locations[key] = "warehouse"
print(locations[key])
Open in playground
Report an error