From 6cff024be72fc56d111b53df9e1a5720bd204411 Mon Sep 17 00:00:00 2001 From: whitequark Date: Tue, 25 Jun 2019 21:53:08 +0000 Subject: [PATCH] compat.fhdl.structure: fix typo. --- nmigen/compat/fhdl/structure.py | 1 + 1 file changed, 1 insertion(+) diff --git a/nmigen/compat/fhdl/structure.py b/nmigen/compat/fhdl/structure.py index 4a99195..1f374d4 100644 --- a/nmigen/compat/fhdl/structure.py +++ b/nmigen/compat/fhdl/structure.py @@ -88,6 +88,7 @@ class Case(ast.Switch): raise TypeError("Case object is not a Migen constant") if isinstance(k, str) and k == "default": default = v + continue else: k = k.value new_cases.append((k, v)) -- 2.30.2