summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--actinide/types.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/actinide/types.py b/actinide/types.py
index 13f1368..97ccdbb 100644
--- a/actinide/types.py
+++ b/actinide/types.py
@@ -257,3 +257,5 @@ def display(value):
return display_decimal(value)
if procedure_p(value):
return display_procedure(value)
+ # Give up and use repr to avoid printing `None`.
+ return repr(value)