Skip to content

Commit

Permalink
fix: restored original call in remove_simplex_is
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasrobiglio committed Sep 9, 2024
1 parent 26a40ee commit 056be79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xgi/core/simplicialcomplex.py
Original file line number Diff line number Diff line change
Expand Up @@ -748,7 +748,7 @@ def remove_simplex_id(self, id):
# Remove all simplices that contain the given simplex
supfaces_ids = self._supfaces_id(self._edge[id])
for sup_id in supfaces_ids:
self.remove_simplex_id(sup_id)
self._remove_simplex_id(sup_id)

# Remove simplex itself
self._remove_simplex_id(id)
Expand Down

0 comments on commit 056be79

Please sign in to comment.