From f71733e9bedd98a30d21e91d266f1d8a97bd79dc Mon Sep 17 00:00:00 2001 From: pycommatthew <79310935+pycommatthew@users.noreply.github.com> Date: Fri, 26 Feb 2021 09:42:33 +0000 Subject: [PATCH] Updates decremented .readall() to .read() (#377) --- content/firmwareapi/pycom/machine/sd.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/firmwareapi/pycom/machine/sd.md b/content/firmwareapi/pycom/machine/sd.md index b69965b..a2dddde 100644 --- a/content/firmwareapi/pycom/machine/sd.md +++ b/content/firmwareapi/pycom/machine/sd.md @@ -33,7 +33,7 @@ f = open('/sd/test.txt', 'w') f.write('Testing SD card write operations') f.close() f = open('/sd/test.txt', 'r') -f.readall() +f.read() f.close() ```