Skip to content

Commit af2aaf0

Browse files
committed
Fixing an argument type so that the executable call is receiving the correct parameter type: Sequence[List[jax.Array]]
PiperOrigin-RevId: 675730914
1 parent 668f746 commit af2aaf0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pathwaysutils/persistence/helper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ def write_one_array(
146146
location, name, value, timeout.total_seconds()
147147
)
148148
write_executable = plugin_executable.PluginExecutable(write_request)
149-
_, write_future = write_executable.call([value])
149+
_, write_future = write_executable.call([[value]])
150150
return write_future
151151

152152

0 commit comments

Comments
 (0)