(self)
| 67 | ASCENDING = 'false' |
| 68 | |
| 69 | def to_str(self) -> str: |
| 70 | if self.value == 'false': |
| 71 | return 'ascending' |
| 72 | else: |
| 73 | return 'descending' |
| 74 | |
| 75 | @classmethod |
| 76 | def from_str(cls, value: str) -> ViewOrdering: |
no outgoing calls
no test coverage detected