Representation. Returns: str: The representation.
(self)
| 131 | return self._scale |
| 132 | |
| 133 | def __str__(self) -> str: |
| 134 | """Representation. |
| 135 | |
| 136 | Returns: |
| 137 | str: The representation. |
| 138 | """ |
| 139 | type_name = type(self).__name__ |
| 140 | out = f"[{type_name}]: precision: {self._precision}, base: {self._base}" |
| 141 | return out |
nothing calls this directly
no outgoing calls
no test coverage detected