Skip to content

Commit b03ca23

Browse files
committed
Nitpick print tweaks to SD card initialization
1 parent 5423f37 commit b03ca23

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/cv2_hardware_init/sd_card.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,11 @@
3939
vfs = uos.VfsFat(sd_card)
4040
uos.mount(vfs, "/sd")
4141
except ImportError:
42-
print("sdcard module not found, skipping SD card initialization...")
42+
print("`sdcard` module not found, skipping SD card initialization...")
4343
except OSError as e:
4444
eStr = str(e)
4545
if "no SD card" in eStr:
46-
print("no SD card found, skipping SD card initialization...")
46+
print("No SD card found, skipping SD card initialization...")
4747
elif "Errno 1" in eStr:
4848
print("SD card already mounted, skipping SD card initialization...")
4949
else:

0 commit comments

Comments
 (0)