Skip to content

Commit 366797c

Browse files
test
1 parent 083703e commit 366797c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tensor_array/layers/layer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def __call__(self, *args: Any, **kwds: Any) -> Any:
3131
super().__setattr__('is_running', True)
3232
return self.calculate(*args, **kwds)
3333

34-
def init_value(self, *args: Any, **kwds: Any) -> Any:
34+
def init_value(self, *args: Tuple, **kwds: Tuple) -> None:
3535
pass
3636

3737
def calculate(self, *args: Any, **kwds: Any) -> Any:

0 commit comments

Comments
 (0)