Updates decremented .readall() to .read() (#377)

This commit is contained in:
pycommatthew
2021-02-26 09:42:33 +00:00
committed by GitHub
parent 312062cca2
commit f71733e9be

View File

@@ -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()
```