diff options
author | Eduardo Julian | 2021-09-08 22:24:08 -0400 |
---|---|---|
committer | Eduardo Julian | 2021-09-08 22:24:08 -0400 |
commit | 54ab659064990ff37a9234c9792102a3b88277d6 (patch) | |
tree | e7e6067d0936bd04212db6e0d3df85a74e0b194f /lux-python | |
parent | 77301f3a456c015daa9d8f9aa3d80fd4e45f8e7e (diff) |
De-bracing | part 1
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 |