| Total Complexity | 0 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | # coding: utf-8 |
||
| 7 | 1 | class Refly(Model): |
|
| 8 | 1 | is_disabled = BooleanType( |
|
| 9 | default=False, |
||
| 10 | required=True, |
||
| 11 | ) |
||
| 12 | 1 | kia_delay = IntType( |
|
| 13 | min_value=0, |
||
| 14 | default=0, |
||
| 15 | required=True, |
||
| 16 | ) |
||
| 17 | 1 | kia_delay_multiplier = FloatType( |
|
| 18 | min_value=0.0, |
||
| 19 | default=0.0, |
||
| 20 | required=True, |
||
| 21 | ) |
||
| 22 | 1 | max_kia = IntType( |
|
| 23 | min_value=-1, |
||
| 24 | default=-1, |
||
| 25 | required=True, |
||
| 26 | ) |
||
| 27 |