mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-06 22:14:27 +08:00
Replace function call with set literal
This commit is contained in:
@@ -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])
|
||||
|
||||
|
||||
Reference in New Issue
Block a user