Skip to content

Commit

Permalink
adding hotfix
Browse files Browse the repository at this point in the history
  • Loading branch information
[email protected] committed Dec 6, 2024
1 parent 0a8ec06 commit 2372fff
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
8 changes: 8 additions & 0 deletions docs/source/algorithms/algorithms.rst
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,14 @@ algorithms.laplacians\_clustering module
:undoc-members:
:show-inheritance:

algorithms.matching\_algorithms module
--------------------------------------

.. automodule:: algorithms.matching_algorithms
:members:
:undoc-members:
:show-inheritance:

algorithms.s\_centrality\_measures module
-----------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion hypernetx/classes/hypergraph.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion hypernetx/classes/property_store.py
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ def set_defaults(self, defaults) -> None:
else:

def grabprop(cell):
return cell.get(k, v)
return cell.pop(k, v)

self._data[k] = self._data["misc_properties"].map(grabprop)
new_cols.append(k)
Expand Down

0 comments on commit 2372fff

Please sign in to comment.