From 57933b974d7ef789a532bf532a9a1caf34a12437 Mon Sep 17 00:00:00 2001 From: Catherine Date: Mon, 25 Sep 2023 13:46:51 +0000 Subject: [PATCH] ast: fix pylance's type inference on Value._rhs_signals(). NFC --- amaranth/hdl/ast.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/amaranth/hdl/ast.py b/amaranth/hdl/ast.py index 45941e6..7655d8a 100644 --- a/amaranth/hdl/ast.py +++ b/amaranth/hdl/ast.py @@ -604,7 +604,7 @@ class Value(metaclass=ABCMeta): @abstractmethod def _rhs_signals(self): - pass # :nocov: + raise NotImplementedError # :nocov: @final