Example dictlike-polymorphic not working

Issue #3704 resolved
Former user created an issue

There are error. First is easy to fix:

...
class Animal(ProxiedDictMixin, Base) # corrected version
...

The second one throws:

Animal.value))))...

NotImpementedError: <__main__.value object at ...>

Comments (5)

  1. Former user Account Deleted

    Fixed the error only __eq__ and __ne__ are implemented in the comperator. So the query has to be changed to AnimalFact.value == True.

    But i still have problems with oder_by in a query.

  2. Log in to comment