summaryrefslogtreecommitdiff
path: root/modules/language/python/set.scm
diff options
context:
space:
mode:
Diffstat (limited to 'modules/language/python/set.scm')
-rw-r--r--modules/language/python/set.scm4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/language/python/set.scm b/modules/language/python/set.scm
index ef4abe7..e9d7c63 100644
--- a/modules/language/python/set.scm
+++ b/modules/language/python/set.scm
@@ -23,7 +23,7 @@
(slot-set! self 'dict d)
(for ((y : x)) ()
(pylist-set! d y #t))))))
-
+
(define pop
(lambda (self)
(call-with-values (lambda () (pylist-pop! (slot-ref self 'dict)))
@@ -32,7 +32,7 @@
(define add
(lambda (self k)
(pylist-set! (slot-ref self 'dict) k #t)))
-
+
(define copy
(lambda (self)
(let ((dict (py-copy (slot-ref self 'dict))))