Skip to content

Commit 1ad529d

Browse files
committed
fix sphinx errors
1 parent e78ff74 commit 1ad529d

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

adafruit_floppy.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ def side(self) -> int:
213213
def side(self, head: int) -> None:
214214
self._side.value = head == 0
215215

216-
def flux_readinto(self, buf: "circuitpython_typing.WritableBuffer") -> int:
216+
def flux_readinto(self, buf: "circuitpython_typing.WriteableBuffer") -> int:
217217
"""Read flux transition information into the buffer.
218218
219219
The function returns when the buffer has filled, or when the index input
@@ -258,7 +258,7 @@ def __init__( # pylint: disable=too-many-arguments
258258
heads: int | None = None,
259259
sectors: int | None = None,
260260
tracks: int | None = None,
261-
flux_buffer: circuitpython_typing.WritableBuffer | None = None,
261+
flux_buffer: circuitpython_typing.WriteableBuffer | None = None,
262262
t1_nom_ns: float | None = None,
263263
keep_selected: bool = False,
264264
):

docs/api.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
API Documentation
2+
-----------------
13

24
.. If you created a package, create one automodule per module in the package.
35

0 commit comments

Comments
 (0)