Hi everyone, I’ve used the .update() function so that it updates the table in my Jupyter Notebook. But, when I look in the actual database on Airtable, I don’t see the updated value.
from airtable import airtable
airtable = airtable.Airtable(’(hidden for privacy)"’, “(hidden for privacy)”)
at = airtable.get(‘Table Name’)
at[“records”][3].update({“Week 1 HW Score” : 10})