diff options
Diffstat (limited to 'lux-python')
-rw-r--r-- | lux-python/source/program.lux | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lux-python/source/program.lux b/lux-python/source/program.lux index 5ab4e9aaf..fb8c39e8e 100644 --- a/lux-python/source/program.lux +++ b/lux-python/source/program.lux @@ -155,10 +155,10 @@ (#try.Failure try) (^multi [(#try.Success tag) (#try.Success flag) (#try.Success value)] - {(read tag) - (#try.Success tag)} - {(read value) - (#try.Success value)}) + [(read tag) + (#try.Success tag)] + [(read value) + (#try.Success value)]) (#try.Success [tag (: Any (case (ffi.check org/python/core/PyNone |