(self, item)
| 159 | max_fibbing_twig[0] = max(max_fibbing_twig[0], lies_told) |
| 160 | |
| 161 | def __getattr__(self, item): |
| 162 | return SerialLiar(self.max_fibbing_twig, self.lies_told + 1) |
| 163 | |
| 164 | #----------------------------------------------------------------------------- |
| 165 | # Tests |