Returns a deep copy of this base feature view.
(self)
| 125 | |
| 126 | @abstractmethod |
| 127 | def __copy__(self): |
| 128 | """Returns a deep copy of this base feature view.""" |
| 129 | pass |
| 130 | |
| 131 | def __repr__(self): |
| 132 | items = (f"{k} = {v}" for k, v in self.__dict__.items()) |
no outgoing calls
no test coverage detected