Remove non-magic trailing comma from tuple (#1854)

Closes #1821.
This commit is contained in:
Charlie Marsh
2023-01-13 12:56:42 -05:00
committed by GitHub
parent fc3f722df5
commit 12440ede9c
3 changed files with 40 additions and 4 deletions

View File

@@ -3,3 +3,4 @@ s2 = set((1, 2))
s3 = set([])
s4 = set(())
s5 = set()
s6 = set((1,))