From 51f0ead16d60c63d1b069f807e3513bba11d8947 Mon Sep 17 00:00:00 2001 From: Patrick Lehmann Date: Mon, 28 Nov 2022 00:32:17 +0100 Subject: Converted string formatting to f-strings. --- pyGHDL/dom/DesignUnit.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'pyGHDL/dom/DesignUnit.py') diff --git a/pyGHDL/dom/DesignUnit.py b/pyGHDL/dom/DesignUnit.py index 3c0d2ab0c..f45cb8340 100644 --- a/pyGHDL/dom/DesignUnit.py +++ b/pyGHDL/dom/DesignUnit.py @@ -314,11 +314,7 @@ class Context(VHDLModel_Context, DOMMixin): items.append(UseClause.parse(item)) else: pos = Position.parse(item) - raise DOMException( - "Unknown context item kind '{kind}' in context at line {line}.".format( - kind=kind.name, line=pos.Line - ) - ) + raise DOMException(f"Unknown context item kind '{kind.name}' in context at line {pos.Line}.") return cls(contextNode, name, items) -- cgit v1.2.3