This commit is contained in:
parent
8d55b1303b
commit
9e28fc168a
1 changed files with 6 additions and 0 deletions
|
|
@ -114,6 +114,12 @@ def read_shows(
|
|||
print(f"DEBUG: First show ID: {shows[0].id}")
|
||||
print(f"DEBUG: First show Venue: {shows[0].venue}")
|
||||
print(f"DEBUG: First show Vertical: {shows[0].vertical}")
|
||||
try:
|
||||
dump = ShowRead.model_validate(shows[0]).model_dump()
|
||||
print(f"DEBUG: Serialized Dump: {dump}")
|
||||
except Exception as e:
|
||||
print(f"DEBUG: Serialization Error: {e}")
|
||||
|
||||
|
||||
|
||||
return PaginatedResponse(
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue