E5F2 Fixup _boot_fat.py · micropython/micropython@34afb41 · GitHub
[go: up one dir, main page]

Skip to content

Commit 34afb41

Browse files
committed
Fixup _boot_fat.py
1 parent c9519df commit 34afb41

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

ports/rp2/modules/_boot_fat.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@
1212
os.VfsFat.mkfs(bdev_root)
1313
vfs_root = os.VfsFat(bdev_root)
1414
vfs_root.label("Root")
15-
16-
os.mount(vfs_root, "/", readonly=True)
15+
os.mount(vfs_root, "/", readonly=True)
1716

1817
try:
1918
vfs_storage = os.VfsFat(bdev_storage)
@@ -22,7 +21,6 @@
2221
os.VfsFat.mkfs(bdev_storage)
2322
vfs_storage = os.VfsFat(bdev_storage)
2423
vfs_storage.label("Storage")
25-
26-
os.mount(vfs_storage, "/storage")
24+
os.mount(vfs_storage, "/storage")
2725

2826
del os, bdev_root, bdev_storage, vfs_storage, vfs_root

0 commit comments

Comments
 (0)
0