Eyal Mor
Eyal Mor
Also encountered this problem. It seems like pydantic 1.9.1 added `deepcopy` to model validation: ``` Config.copy_on_model_validation does a deep copy and not a shallow one, https://github.com/samuelcolvin/pydantic/issues/3641 by @PrettyWood ``` (from...
Thank you @daltyboy11 for the example! Extended the example to also provide a nice Queue wrapper and resolver, with states. I'm using this in an app that is running each...
Got it working with a hack: ``` class MultipleChooserEmbededInlinePanel(InlinePanel): class BoundPanel(InlinePanel.BoundPanel): class Media: js = [ # This must be defined due to an error with how Wagtail loads the...