diff options
| author | Damien George <damien@micropython.org> | 2022-03-07 15:15:45 +1100 |
|---|---|---|
| committer | Damien George <damien@micropython.org> | 2022-03-07 15:15:45 +1100 |
| commit | bb2bd071f74c04237618958521e58d48d2dc35d4 (patch) | |
| tree | dc2fd4ae75c1e79e03164f119bc66d90b19d9cb3 | |
| parent | eadc927baff938a7f561fe69e09a27f11514f96e (diff) | |
docs/library/esp32.rst: Mark esp32.Partition as not taking kw args.
Fixes issue #8380.
Signed-off-by: Damien George <damien@micropython.org>
| -rw-r--r-- | docs/library/esp32.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/library/esp32.rst b/docs/library/esp32.rst index 82e69e496..da5fa8c3c 100644 --- a/docs/library/esp32.rst +++ b/docs/library/esp32.rst @@ -68,7 +68,7 @@ Flash partitions This class gives access to the partitions in the device's flash memory and includes methods to enable over-the-air (OTA) updates. -.. class:: Partition(id, block_size=4096) +.. class:: Partition(id, block_size=4096, /) Create an object representing a partition. *id* can be a string which is the label of the partition to retrieve, or one of the constants: ``BOOT`` or ``RUNNING``. |
