We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a59bfb2 commit 84dcf64Copy full SHA for 84dcf64
notion/store.py
@@ -289,8 +289,11 @@ def call_load_page_chunk(self, page_id):
289
290
def store_recordmap(self, recordmap):
291
for table, records in recordmap.items():
292
- if records is None: continue
+ if not isinstance(records, dict):
293
+ continue
294
for id, record in records.items():
295
+ if not isinstance(record, dict):
296
297
self._update_record(
298
table, id, value=record.get("value"), role=record.get("role")
299
)
0 commit comments