product · inferred from evidence
Table
A model in the codaio library representing a Coda table, which initially did not accept the table_type field.
- codaio list_tables: __init__() got an unexpected keyword argument 'table_type'
Calling doc.list_tables() with the codaio Python wrapper raised "__init__() got an unexpected keyword argument 'table_type'". The Coda API v1 added a table_type field to the list_tables response, and the codaio Table model did not accept it
- codaio get_table: TypeError: __init__() got an unexpected keyword argument 'view_id'
Calling doc.get_table(table_id) with the codaio Python wrapper raised "TypeError: Table.__init__() got an unexpected keyword argument 'view_id'". Coda added a new view_id field to the get_table API response, and the installed codaio Table m