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
The "person_1 = " in "await( Person.save(person1)" is unnecessary. This can be written as
"await Person.save(person1)" or "await person1.save(person1)". However, person1 must be passed as a parameter to save because methods in Python do not have a hidden parameter of the object.
Feature description::
Currently to save a record in a table:
This issue wants to add a new way to save, making it easier for the user:
Need:
Make it easier for the user to save a new record.
The text was updated successfully, but these errors were encountered: