| Conditions | 1 |
| Total Lines | 20 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 4 |
| CRAP Score | 1 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | """ |
||
| 19 | 1 | def __init__(self, field, expression): |
|
| 20 | """ |
||
| 21 | Object contructor. |
||
| 22 | |||
| 23 | :param str field: The name of the field in the row that must be match against the expression. |
||
| 24 | :param str expression: The expression. |
||
| 25 | """ |
||
| 26 | 1 | self._field = field |
|
| 27 | """ |
||
| 28 | The name of the field in the row that must be match against the expression. |
||
| 29 | |||
| 30 | :type: str |
||
| 31 | """ |
||
| 32 | |||
| 33 | 1 | self._expression = expression |
|
| 34 | 1 | """ |
|
| 35 | The expression. |
||
| 36 | |||
| 37 | :type: str |
||
| 38 | """ |
||
| 39 | |||
| 71 |