| Total Complexity | 1 |
| Total Lines | 15 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | """ |
||
| 11 | class TrueCondition(SimpleCondition): |
||
| 12 | """ |
||
| 13 | A true condition always evaluates to True. |
||
| 14 | """ |
||
| 15 | |||
| 16 | # ------------------------------------------------------------------------------------------------------------------ |
||
| 17 | def match(self, row): |
||
| 18 | """ |
||
| 19 | Always returns true. |
||
| 20 | |||
| 21 | :param dict row: The row, ignored. |
||
| 22 | |||
| 23 | :rtype: True |
||
| 24 | """ |
||
| 25 | return True |
||
| 26 | |||
| 28 |