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
Can support for django.core.serializers.serialize be added? see django doc on subject.
Currently, strategy field's value_to_string will return a stringified class instance '<path.to.Strategy object at 0xffff89fd9190>', when I imagine we would want it to be something like "path.to.Strategy"
Proposal
since StrategyField is a CharField, something like this should work
Can support for
django.core.serializers.serialize
be added? see django doc on subject.Currently, strategy field's
value_to_string
will return a stringified class instance'<path.to.Strategy object at 0xffff89fd9190>'
, when I imagine we would want it to be something like"path.to.Strategy"
Proposal
since StrategyField is a CharField, something like this should work
The text was updated successfully, but these errors were encountered: