Skip to content

Commit a0638ff

Browse files
authored
1 parent 995b1ec commit a0638ff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

data_structures/disjoint_set/disjoint_set.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def union_set(x, y):
2626
disjoint set tree will be more flat.
2727
"""
2828
x, y = find_set(x), find_set(y)
29-
if x==y:
29+
if x == y:
3030
return
3131

3232
elif x.rank > y.rank:

0 commit comments

Comments
 (0)