Skip to content

Commit 05d06f5

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 154d954 commit 05d06f5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

data_structures/disjoint_set/progressive_set_intersection.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,6 @@ def progressive_set_intersection(*sets: Set) -> Set:
4242
for current_set in sorted_sets[1:]:
4343
if not result:
4444
return set()
45-
result &= current_set # Efficient in-place intersection
45+
result &= current_set # Efficient in-place intersection
4646

4747
return result

0 commit comments

Comments
 (0)