mirror of
https://github.com/astral-sh/ruff.git
synced 2025-10-03 07:04:53 +00:00
5 lines
71 B
Python
5 lines
71 B
Python
s1 = set([1, 2])
|
|
s2 = set((1, 2))
|
|
s3 = set([])
|
|
s4 = set(())
|
|
s5 = set()
|