Fix signature of `mkfs()`

This commit is contained in:
Dan Halbert 2023-03-21 10:30:03 -04:00 committed by GitHub
parent 9e630a565e
commit d9d27a3e31
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -267,7 +267,7 @@ STATIC const mp_rom_map_elem_t storage_module_globals_table[] = {
//| ...
//|
//| @staticmethod
//| def mkfs(self, block_device: BlockDevice) -> None:
//| def mkfs(block_device: BlockDevice) -> None:
//| """Format the block device, deleting any data that may have been there.
//|
//| **Limitations**: On SAMD21 builds, `mkfs()` will raise ``OSError(22)`` when