We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 083703e commit 366797cCopy full SHA for 366797c
src/tensor_array/layers/layer.py
@@ -31,7 +31,7 @@ def __call__(self, *args: Any, **kwds: Any) -> Any:
31
super().__setattr__('is_running', True)
32
return self.calculate(*args, **kwds)
33
34
- def init_value(self, *args: Any, **kwds: Any) -> Any:
+ def init_value(self, *args: Tuple, **kwds: Tuple) -> None:
35
pass
36
37
def calculate(self, *args: Any, **kwds: Any) -> Any:
0 commit comments