diff options
Diffstat (limited to 'lux-python/source')
-rw-r--r-- | lux-python/source/program.lux | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lux-python/source/program.lux b/lux-python/source/program.lux index 9b47b79f9..9da4f8e57 100644 --- a/lux-python/source/program.lux +++ b/lux-python/source/program.lux @@ -319,7 +319,7 @@ (as (Array Any)) (array.item (|> index' ffi.int_to_long (as Nat)))) {.#None} - (pyget "super" [index']) + (ffi.super index') {.#Some it} (<| (case (ffi.as [java/lang/Object] (as java/lang/Object it)) @@ -330,9 +330,9 @@ (case (ffi.as library/lux/Function (as java/lang/Object it)) {.#Some it} (pseudo_function to_host it) - + {.#None}) - (pyget "super" [index'])))) + (ffi.super index')))) ))) (def (to_host it) |