Skip to content

Commit f71733e

Browse files
authored
Updates decremented .readall() to .read() (#377)
1 parent 312062c commit f71733e

File tree

1 file changed

+1
-1
lines changed
  • content/firmwareapi/pycom/machine

1 file changed

+1
-1
lines changed

content/firmwareapi/pycom/machine/sd.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ f = open('/sd/test.txt', 'w')
3333
f.write('Testing SD card write operations')
3434
f.close()
3535
f = open('/sd/test.txt', 'r')
36-
f.readall()
36+
f.read()
3737
f.close()
3838
```
3939

0 commit comments

Comments
 (0)