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
For example, if a user has a Schema with a field with the name id, __setattr__ will update the DataRecord's member id rather than the field_values. This will then cause an exception to be thrown if/when there is an attempt to access the id value.
The text was updated successfully, but these errors were encountered:
The
DataRecord
class currently has the following__setattr__
implementation:For example, if a user has a
Schema
with a field with the nameid
,__setattr__
will update theDataRecord
's memberid
rather than thefield_values
. This will then cause an exception to be thrown if/when there is an attempt to access theid
value.The text was updated successfully, but these errors were encountered: