We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
My code: page = 'https://www.notion.so/883f41e4c7044aa4a5439558068cd46d?v=e01f2e017b8b4ff68258cc078c8a41df' client = NotionClient(token_v2=token) collection = client.get_block(page).collection newRow = collection.add_row() newRow.subject='HIS'
Exception has occurred: AttributeError 'NoneType' object has no attribute 'set'
The text was updated successfully, but these errors were encountered:
Having the same issue. Tried my hand at debugging but I'm not immediately seeing why the .set() method would be missing from this object.
.set()
Sorry, something went wrong.
This is probably a duplicate of #92. I also bumped into this today. Sounds like #96 should provide a fix
I have encountered the same error today, and it fixed when I deleted the other views on the database. It works with only 1 view it seems.
No branches or pull requests
My code:
page = 'https://www.notion.so/883f41e4c7044aa4a5439558068cd46d?v=e01f2e017b8b4ff68258cc078c8a41df'
client = NotionClient(token_v2=token)
collection = client.get_block(page).collection
newRow = collection.add_row()
newRow.subject='HIS'
Exception has occurred: AttributeError
'NoneType' object has no attribute 'set'
The text was updated successfully, but these errors were encountered: