| 1234567891011121314151617181920 |
- # -*- coding: utf-8 -*-
- from oscar.core.loading import is_model_registered
-
- from .abstract_models import * # noqa
-
- __all__ = []
-
-
- if not is_model_registered('wishlists', 'WishList'):
- class WishList(AbstractWishList):
- pass
-
- __all__.append('WishList')
-
-
- if not is_model_registered('wishlists', 'Line'):
- class Line(AbstractLine):
- pass
-
- __all__.append('Line')
|