Return the column class prefix.
(cls)
| 84 | |
| 85 | @classmethod |
| 86 | def prefix(cls) -> str: |
| 87 | """Return the column class prefix.""" |
| 88 | cname = cls.__name__ |
| 89 | return cname[: cname.rfind("Col")] |
| 90 | |
| 91 | @classmethod |
| 92 | def from_atom( |
no outgoing calls
no test coverage detected