1
0
Fork 0

fix(api): correct stub method name

This commit is contained in:
Sean Sube 2023-01-16 11:45:31 -06:00
parent 3fd52fcc6d
commit f493246192
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ class ONNXImage():
def cpu(self):
return self
def clamp(self, min, max):
def clamp_(self, min, max):
self.source = np.clip(self.source, min, max)
def numpy(self):