From 7b2525ab235a38cfce57c44f54730086b66e7765 Mon Sep 17 00:00:00 2001 From: Vincent Legoll Date: Fri, 20 Mar 2020 22:44:58 +0100 Subject: [PATCH] bno_plot.py: Fix pylint: singleton-comparison Comparison to None should be 'expr is None' 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 be64da0..3aa4e19 100644 --- a/btt/bno_plot.py +++ b/btt/bno_plot.py @@ -105,7 +105,7 @@ if __name__ == '__main__': print(fld[0], fld[1], int(fld[2])-int(fld[1]), file=fo) t = t[t.rfind('/')+1:] - if plot_cmd == None: plot_cmd = "splot '%s'" % t + if plot_cmd is None: plot_cmd = "splot '%s'" % t else: plot_cmd = "%s,'%s'" % (plot_cmd, t) with open('%s/plot.cmds' % tmpdir, 'w') as fo: -- 2.25.1