From c7da6c1292ea60a612ee9fd0f75d603485939580 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-Fran=C3=A7ois=20Nguyen?= Date: Thu, 5 Oct 2023 16:01:16 +0200 Subject: [PATCH] lib.wiring: add Interface to __all__. --- amaranth/lib/wiring.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/amaranth/lib/wiring.py b/amaranth/lib/wiring.py index 54b3771..dac6009 100644 --- a/amaranth/lib/wiring.py +++ b/amaranth/lib/wiring.py @@ -10,7 +10,7 @@ from ..hdl.ir import Elaboratable from .._utils import final -__all__ = ["In", "Out", "Signature", "connect", "flipped", "Component"] +__all__ = ["In", "Out", "Signature", "Interface", "connect", "flipped", "Component"] class Flow(enum.Enum):