summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--polymatrix/variable/init.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/polymatrix/variable/init.py b/polymatrix/variable/init.py
index de217bd..5583c31 100644
--- a/polymatrix/variable/init.py
+++ b/polymatrix/variable/init.py
@@ -2,4 +2,4 @@ from .abc import Variable
from .impl import VariableImpl
def init_variable(name: str, shape: tuple[int, int]) -> Variable:
- return VariableImpl(str, shape)
+ return VariableImpl(name, shape)