aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux/target/python.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/lux/target/python.lux')
-rw-r--r--stdlib/source/lux/target/python.lux8
1 files changed, 3 insertions, 5 deletions
diff --git a/stdlib/source/lux/target/python.lux b/stdlib/source/lux/target/python.lux
index ef1098095..2f0438f8f 100644
--- a/stdlib/source/lux/target/python.lux
+++ b/stdlib/source/lux/target/python.lux
@@ -26,8 +26,6 @@
(text.replace-all text.new-line (format text.new-line text.tab))))
(abstract: #export (Code brand)
- {}
-
Text
(def: #export manual
@@ -40,7 +38,7 @@
(template [<type> <super>]
[(with-expansions [<brand> (template.identifier [<type> "'"])]
- (`` (abstract: #export (<brand> brand) {} Any))
+ (`` (abstract: #export (<brand> brand) Any))
(`` (type: #export (<type> brand)
(<super> (<brand> brand)))))]
@@ -53,7 +51,7 @@
(template [<type> <super>]
[(with-expansions [<brand> (template.identifier [<type> "'"])]
- (`` (abstract: #export <brand> {} Any))
+ (`` (abstract: #export <brand> Any))
(`` (type: #export <type> (<super> <brand>))))]
[Literal Computation]
@@ -63,7 +61,7 @@
)
(template [<var> <brand>]
- [(abstract: #export <brand> {} Any)
+ [(abstract: #export <brand> Any)
(type: #export <var> (Var <brand>))]