From 9bf5f88c1179c84c8072ecffc7026e77acb3641b Mon Sep 17 00:00:00 2001 From: Vincent Legoll Date: Fri, 20 Mar 2020 22:44:57 +0100 Subject: [PATCH] bno_plot.py: Fix pylint: len-as-condition Do not use `len(SEQUENCE)` to determine if a sequence is empty Signed-off-by: Vincent Legoll Signed-off-by: Jens Axboe --- btt/bno_plot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/btt/bno_plot.py b/btt/bno_plot.py index 1a1937c..be64da0 100644 --- a/btt/bno_plot.py +++ b/btt/bno_plot.py @@ -76,7 +76,7 @@ def parse_args(in_args): elif o in ('-K', '--keys-below'): keys_below = True - if len(args) > 0: bnos = args + if args: bnos = args else: bnos = glob.glob('blknos*[rw].dat') return (bnos, keys_below) -- 2.25.1