diff options
Diffstat (limited to '')
-rw-r--r-- | lux-python/source/program.lux | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lux-python/source/program.lux b/lux-python/source/program.lux index 166dee982..366395232 100644 --- a/lux-python/source/program.lux +++ b/lux-python/source/program.lux @@ -281,7 +281,10 @@ (wrap [global value definition])))) (def: (ingest context content) - (|> content (\ encoding.utf8 decode) try.assume (:coerce (_.Statement Any)))) + (|> content + (\ encoding.utf8 decode) + try.assume + (:coerce (_.Statement Any)))) (def: (re_learn context content) (execute! content)) |