| 688 | |
| 689 | |
| 690 | class Attribute(TokenList): |
| 691 | |
| 692 | token_type = 'attribute' |
| 693 | |
| 694 | @property |
| 695 | def stripped_value(self): |
| 696 | for token in self: |
| 697 | if token.token_type.endswith('attrtext'): |
| 698 | return token.value |
| 699 | |
| 700 | class Section(TokenList): |
| 701 |
no outgoing calls
no test coverage detected