From 58fce267c29f44ccec558ef23b499f1b2917861b Mon Sep 17 00:00:00 2001 From: Tristan Gingold Date: Sat, 4 Jun 2022 20:44:57 +0200 Subject: pyGHDL/lsp: reformat --- pyGHDL/lsp/references.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'pyGHDL/lsp/references.py') diff --git a/pyGHDL/lsp/references.py b/pyGHDL/lsp/references.py index d83930355..e99f473c2 100644 --- a/pyGHDL/lsp/references.py +++ b/pyGHDL/lsp/references.py @@ -76,9 +76,7 @@ def find_def(n, loc): return res elif typ == nodes_meta.types.Iir_Flist: attr = nodes_meta.get_field_attribute(f) - if (attr == nodes_meta.Attr.ANone - or (attr == nodes_meta.Attr.Of_Maybe_Ref - and not nodes.Get_Is_Ref(n))): + if attr == nodes_meta.Attr.ANone or (attr == nodes_meta.Attr.Of_Maybe_Ref and not nodes.Get_Is_Ref(n)): for n1 in pyutils.flist_iter(nodes_meta.Get_Iir_Flist(n, f)): res = find_def(n1, loc) if res is not None: -- cgit v1.2.3