| Total Complexity | 0 |
| Total Lines | 10 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | # -*- coding: utf-8 -*- |
||
| 5 | class ReservablePricingAppConfig(AppConfig): |
||
| 6 | name = "reservable_pricing" |
||
| 7 | verbose_name = "Reservable Pricing" |
||
| 8 | label = "reservable_pricing" |
||
| 9 | provides = { |
||
| 10 | "pricing_module": [ |
||
| 11 | "reservable_pricing.module:ReservablePricingModule" |
||
| 12 | ], |
||
| 13 | "admin_module": [ |
||
| 14 | "reservable_pricing.module:PriceModifierModule" |
||
| 15 | ], |
||
| 17 |