From 45995b8a93ed384b2173570a343d0e22a5049981 Mon Sep 17 00:00:00 2001 From: "Rodrigo A. Melo" Date: Mon, 12 Aug 2024 19:50:32 -0300 Subject: [PATCH] Fix a linter issue --- examples/hooks/diamond.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/hooks/diamond.py b/examples/hooks/diamond.py index eac463fa..0e0b5d55 100644 --- a/examples/hooks/diamond.py +++ b/examples/hooks/diamond.py @@ -47,6 +47,6 @@ prj.set_top('Top') for hook_name, hook in hooks.items(): - prj.add_hook('postpar', hook) + prj.add_hook('postpar', hook) prj.make()