Fix view config inheritance

This commit is contained in:
Lance Edgar 2022-11-21 22:22:46 -06:00
parent 640ca783c7
commit 16fdfd51ba
2 changed files with 2 additions and 3 deletions

View file

@ -59,5 +59,4 @@ class ProductView(corepos_base.ProductView, woocommerce_base.ProductView):
def includeme(config): def includeme(config):
ProductView.defaults(config) base.defaults(config, **{'ProductView': ProductView})
base.PendingProductView.defaults(config)

View file

@ -24,4 +24,4 @@ class UpgradeView(base.UpgradeView):
def includeme(config): def includeme(config):
UpgradeView.defaults(config) base.defaults(config, **{'UpgradeView': UpgradeView})