(cls, *args, tensor_type, tensor_shape, patches=[], **kwargs)
| 52 | self.patches = patches |
| 53 | |
| 54 | def __new__(cls, *args, tensor_type, tensor_shape, patches=[], **kwargs): |
| 55 | return super().__new__(cls, *args, **kwargs) |
| 56 | |
| 57 | def to(self, *args, **kwargs): |
| 58 | new = super().to(*args, **kwargs) |
nothing calls this directly
no outgoing calls
no test coverage detected