Skip to content

Commit 11e6419

Browse files
committed
broadcast_domains fix
1 parent ab2eb9f commit 11e6419

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pybamm/expression_tree/operations/serialise.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1010,7 +1010,7 @@ def convert_symbol_from_json(
10101010
elif symbol_type == "FullBroadcast":
10111011
child = Serialise.convert_symbol_from_json(json_data["children"][0])
10121012
domains = json_data["domains"]
1013-
return pybamm.FullBroadcast(child, "broadcast", domains)
1013+
return pybamm.FullBroadcast(child, broadcast_domains=domains)
10141014
elif symbol_type == "SecondaryBroadcast":
10151015
child = Serialise.convert_symbol_from_json(json_data["children"][0])
10161016
domain = json_data["broadcast_domain"]

0 commit comments

Comments
 (0)