diff --git a/coreblocks/peripherals/wishbone.py b/coreblocks/peripherals/wishbone.py index de6f37f98..ebd5dc377 100644 --- a/coreblocks/peripherals/wishbone.py +++ b/coreblocks/peripherals/wishbone.py @@ -53,6 +53,7 @@ def __init__(self, wb_params: WishboneParameters): ) def create(self, *, path: tuple[str | int, ...] = (), src_loc_at: int = 0): + """Create a WishboneInterface.""" # workaround for Sphinx problem with Amaranth docstring return cast(WishboneInterface, PureInterface(self, path=path, src_loc_at=src_loc_at + 1))