You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I ran a get table on my filtered view and I'm having some issues.
File "/home/codespace/.local/lib/python3.8/site-packages/codaio/coda.py", line 784, in get_table
return Table.from_json(table_data, document=self)
File "/home/codespace/.local/lib/python3.8/site-packages/codaio/coda.py", line 699, in from_json
return cls(**js, document=document)
TypeError: __init__() got an unexpected keyword argument 'filter'
Digging into the code a bit it looks like the Table class doesn't have support for a filter argument here which why I'm getting this error. I'm happy to do the add myself but I'm just relearning python after nearly 10 years so some guidance would be appreciated.
The text was updated successfully, but these errors were encountered:
Hi @funkymonkeymonk thanks for catching that. Try to make a pull request and I'll be more than happy to review it. If a field is missing you just need to add it like the other fields on the Table class.
Heya,
I ran a get table on my filtered view and I'm having some issues.
Digging into the code a bit it looks like the Table class doesn't have support for a filter argument here which why I'm getting this error. I'm happy to do the add myself but I'm just relearning python after nearly 10 years so some guidance would be appreciated.
The text was updated successfully, but these errors were encountered: