Open
Description
I would like to report an issue in page https://python-driver.docs.scylladb.com/3.26.5-scylla/user-defined-types
Problem
The final code block on the page has
print(address) # prints "Address(street='123 Main St.', zipcode=78723)"
street = address.street
zipcode = address.street
Suggest a fix
I believe there is a typo and the last line should be changed to:
zipcode = address.zipcode