Skip to content

Commit

Permalink
return gvs as list, not set
Browse files Browse the repository at this point in the history
  • Loading branch information
natemacfadden committed Sep 26, 2024
1 parent 88f96c3 commit 45095f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cytools/calabiyau.py
Original file line number Diff line number Diff line change
Expand Up @@ -2440,7 +2440,7 @@ def gvs(self) -> set:
The GV invariants.
"""
if self._type == "gv":
return set(self._charge2invariant.values())
return list(self._charge2invariant.values())
else:
return None

Expand Down

0 comments on commit 45095f3

Please sign in to comment.