diff options
Diffstat (limited to 'lux-python')
-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 1d75f0e98..bf154a7e7 100644 --- a/lux-python/source/program.lux +++ b/lux-python/source/program.lux @@ -297,7 +297,7 @@ (def: (ingest context content) (|> content - (\ utf8.codec decode) + (\ utf8.codec decoded) try.trusted (:as (_.Statement Any)))) @@ -340,7 +340,7 @@ (def: define! define!) (def: (ingest context content) - (|> content (\ utf8.codec decode) try.trusted (:as (_.Statement Any)))) + (|> content (\ utf8.codec decoded) try.trusted (:as (_.Statement Any)))) (def: (re_learn context content) (execute! content)) @@ -476,7 +476,7 @@ #platform.phase python.generate #platform.runtime runtime.generate #platform.phase_wrapper ..phase_wrapper - #platform.write (|>> _.code (\ utf8.codec encode))}))) + #platform.write (|>> _.code (\ utf8.codec encoded))}))) (def: (program context program) (Program (_.Expression Any) (_.Statement Any)) |