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
Most notably, Grade.cell_type was defined as an association_proxy in the
class, but was later overwritten with a column_property. Because the
mapper had already been made aware of the association_proxy, this raised
a warning. Grade.max_score also had a similar problem, with a
column_property overwriting a regular @Property.
This commit fixes the warnings by replacing the in-class field
definitions with `field = None`.
Additionally, remove duplicate definitions for `cell_type_gradecell` and
`cell_type_taskcell`.
Fixes#1946
0 commit comments