dd5d7c86d2
This can be enforced by pre-commit, but correct it separately to make it easier to review.
5 lines
47 B
Python
5 lines
47 B
Python
s = {1, 2, 3, 4}
|
|
l = list(s)
|
|
l.sort()
|
|
print(l)
|