Base for the FixedPrecision Encoder. Returns: int: base
(self)
| 108 | |
| 109 | @property |
| 110 | def base(self) -> int: # noqa |
| 111 | """Base for the FixedPrecision Encoder. |
| 112 | |
| 113 | Returns: |
| 114 | int: base |
| 115 | """ |
| 116 | return self._base |
| 117 | |
| 118 | @base.setter |
| 119 | def base(self, base: int) -> None: |
nothing calls this directly
no outgoing calls
no test coverage detected