Skip to content

Commit

Permalink
Fix comma space
Browse files Browse the repository at this point in the history
  • Loading branch information
thecaligarmo committed Sep 3, 2024
1 parent 234acb6 commit 8035d12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sage/combinat/subset.py
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ def __contains__(self, value):
sage: {1, 2} in S
True
"""
if value not in Sets() and not isinstance(value, (set,frozenset)):
if value not in Sets() and not isinstance(value, (set, frozenset)):
return False
return all(v in self._s for v in value)

Expand Down

0 comments on commit 8035d12

Please sign in to comment.