From 198e3ed3d692a2668a1609ae85760a5010dc78e7 Mon Sep 17 00:00:00 2001 From: Arnaud Giersch Date: Mon, 19 Jul 2021 23:12:51 +0200 Subject: [PATCH] [lgtm] Fix unreachable statement. --- tools/tesh/tesh.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tools/tesh/tesh.py b/tools/tesh/tesh.py index a51dac83eb..2552c71b4d 100755 --- a/tools/tesh/tesh.py +++ b/tools/tesh/tesh.py @@ -674,5 +674,4 @@ if __name__ == '__main__': print("Test suite from stdin OK") else: print("Test suite `" + f.filename + "' OK") - else: - tesh_exit(return_code) + tesh_exit(return_code) -- 2.20.1