summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordherrada <dylan.herrada@adafruit.com>2020-07-03 15:51:39 -0400
committerdherrada <dylan.herrada@adafruit.com>2020-07-03 15:51:39 -0400
commit657c651e0efae2c9c4590e7c5cad5bb201fab3b4 (patch)
treeaba5314bf77c0e3bc3a2124d484b4e53aa09746b
parent4c5a9d1e3aa9412693a6a6e4221bf3a85b8a5e62 (diff)
Added type hints to uheap
-rw-r--r--shared-bindings/uheap/__init__.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/shared-bindings/uheap/__init__.c b/shared-bindings/uheap/__init__.c
index f089f2922..0559d974a 100644
--- a/shared-bindings/uheap/__init__.c
+++ b/shared-bindings/uheap/__init__.c
@@ -34,7 +34,7 @@
//| """Heap size analysis"""
//|
-//| def info(object: Any) -> Any:
+//| def info(object: Any) -> int:
//| """Prints memory debugging info for the given object and returns the
//| estimated size."""
//| ...