| Total Lines | 11 |
| Duplicated Lines | 0 % |
| Changes | 3 | ||
| Bugs | 0 | Features | 0 |
| 1 | from django.forms import ModelForm |
||
| 7 | class ReservableProductForm(ModelForm): |
||
| 8 | |||
| 9 | class Meta: |
||
| 10 | model = ReservableProduct |
||
| 11 | fields = ( |
||
| 12 | "pricing_per_person", |
||
| 13 | "pricing_per_person_included", |
||
| 14 | "pricing_per_person_price", |
||
| 15 | "sort_order", |
||
| 16 | "check_out_time", |
||
| 17 | "check_in_time", |
||
| 18 | # "available_count", # not implemented yet |
||
| 48 |
This check looks for calls to members that are non-existent. These calls will fail.
The member could have been renamed or removed.