From b66b0f3efc484463abd8f7da194cea37f7b9978b Mon Sep 17 00:00:00 2001 From: Umut Date: Wed, 15 Nov 2023 14:57:51 +0100 Subject: [PATCH] chore(frontend-python): don't require coverage for highlighting result --- frontends/concrete-python/concrete/fhe/representation/graph.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontends/concrete-python/concrete/fhe/representation/graph.py b/frontends/concrete-python/concrete/fhe/representation/graph.py index 69b655484a..4d00d38c9d 100644 --- a/frontends/concrete-python/concrete/fhe/representation/graph.py +++ b/frontends/concrete-python/concrete/fhe/representation/graph.py @@ -372,7 +372,7 @@ def format( for node in self.ordered_outputs(): returns.append(f"%{id_map[node]}") lines.append(f"return {', '.join(returns)}") - if highlighted_result: + if highlighted_result: # pragma: no cover highlighted_lines[len(lines) - 1] = highlighted_result # strip whitespaces