[PATCH 07/10] btt_plot.py: Fix pylint: no-else-return

Vincent Legoll <[email protected]>
Newsgroups org.kernel.vger.linux-btrace
Message-ID <[email protected]>
Unnecessary "elif" after "return"

Signed-off-by: Vincent Legoll <[email protected]>
---
 btt/btt_plot.py | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/btt/btt_plot.py b/btt/btt_plot.py
index 653ace7..b67caaa 100755
--- a/btt/btt_plot.py
+++ b/btt/btt_plot.py
@@ -396,12 +396,11 @@ def do_live(files):
 	def live_sort(a, b):
 		if a[0] = 'sys' and b[0] = 'sys':
 			return 0
-		elif a[0] = 'sys' or a[2][0] < b[2][0]:
+		if a[0] = 'sys' or a[2][0] < b[2][0]:
 			return -1
-		elif b[0] = 'sys' or a[2][0] > b[2][0]:
+		if b[0] = 'sys' or a[2][0] > b[2][0]:
 			return  1
-		else:
-			return  0
+		return  0
 
 	#----------------------------------------------------------------------
 	def turn_off_ticks(ax):
-- 
2.20.1
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.