Replace function call with set literal

This commit is contained in:
Hugo
2018-01-04 16:37:50 +02:00
parent 5755fcb900
commit cc623218e5
13 changed files with 32 additions and 32 deletions

View File

@@ -254,7 +254,7 @@ C().list_arr(1.0)[0]
# array recursions
# -----------------
a = set([1.0])
a = {1.0}
a.update(a)
a.update([1])