Fix del function

This commit is contained in:
lucasdelimanogueira 2024-04-26 01:04:50 -03:00
parent dbc45488ff
commit d2c8262966
3 changed files with 0 additions and 3 deletions

Binary file not shown.

View file

@ -46,9 +46,6 @@ class Tensor:
return value
def __del__(self):
self.lib.free_tensor(self.tensor)
def shape(self):
return f"Tensor(shape={self.shape})"