diff options
Diffstat (limited to 'tests/basics/set_copy.py')
-rw-r--r-- | tests/basics/set_copy.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/basics/set_copy.py b/tests/basics/set_copy.py index 2ea308b0db..646fae0f26 100644 --- a/tests/basics/set_copy.py +++ b/tests/basics/set_copy.py @@ -3,6 +3,4 @@ t = s.copy() s.add(5) t.add(7) for i in s, t: - l = list(i) - l.sort() - print(l) + print(sorted(i)) |