Skip to content

Commit

Permalink
fixed bug in property store lines 373 and 392 misassigned misc_proper…
Browse files Browse the repository at this point in the history
…ties_col
  • Loading branch information
brendapraggastis committed Dec 6, 2024
1 parent a373ea9 commit 0130cbe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hypernetx/classes/hypergraph.py
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,7 @@ def __init__(
0,
weight_col=edge_weight_prop_col,
default_weight=default_edge_weight,
misc_properties_col=misc_edge_properties_col,
misc_properties_col=misc_properties_col,
)
edge_propertystore = PropertyStore(
edfp, default_weight=default_edge_weight
Expand All @@ -389,7 +389,7 @@ def __init__(
1,
weight_col=node_weight_prop_col,
default_weight=default_node_weight,
misc_properties_col=misc_node_properties_col,
misc_properties_col=misc_properties_col,
)
node_propertystore = PropertyStore(
ndfp, default_weight=default_node_weight
Expand Down

0 comments on commit 0130cbe

Please sign in to comment.