Skip to content

Commit 16038fd

Browse files
committed
ref machine.SDCard : Fix positional / kw args
Signed-off-by: Jos Verlinde <Jos.Verlinde@microsoft.com>
1 parent 507db90 commit 16038fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

reference/micropython/machine/SDCard.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,14 +105,14 @@ class SDCard(AbstractBlockDev):
105105
self,
106106
slot: int = 1,
107107
width: int = 1,
108+
*,
108109
cd: PinLike | None = None,
109110
wp: PinLike | None = None,
110111
sck: PinLike | None = None,
111112
miso: PinLike | None = None,
112113
mosi: PinLike | None = None,
113114
cs: PinLike | None = None,
114115
freq: int = 20000000,
115-
/,
116116
) -> None:
117117
"""
118118
This class provides access to SD or MMC storage cards using either

0 commit comments

Comments
 (0)