Skip to content

Commit 32efcb1

Browse files
committed
fix: add empty layout to bma output
1 parent 4608c18 commit 32efcb1

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/qualitative_networks.jl

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -799,8 +799,10 @@ function qn_to_bma_dict(qn::QN{N,S,M}) where {N,S,C,G,L<:EntityIdName,M<:MetaGra
799799
end,
800800
) for (i, (src, dst)) in enumerate(edge_labels(get_graph(qn)))
801801
]
802-
output_dict =
803-
Dict("Model" => Dict("Variables" => variables, "Relationships" => relationships))
802+
output_dict = Dict(
803+
"Model" => Dict("Variables" => variables, "Relationships" => relationships),
804+
"Layout" => Dict(),
805+
)
804806

805807
return output_dict
806808
end

0 commit comments

Comments
 (0)