From da7e6d3e1ef86f7bfeec65b6bd0a1172be81a073 Mon Sep 17 00:00:00 2001 From: Radostin Stoyanov Date: Fri, 9 Feb 2024 13:47:55 +0000 Subject: [PATCH] criu-ns: fix lint error This patch fixes the following lint error: scripts/criu-ns:219:16: E713 [*] Test for membership should be `not in` The change in this patch is auto-generated with `ruff --fix`. Signed-off-by: Radostin Stoyanov --- scripts/criu-ns | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/criu-ns b/scripts/criu-ns index 4c032aa140..5950d7c50e 100755 --- a/scripts/criu-ns +++ b/scripts/criu-ns @@ -216,7 +216,7 @@ def wrap_restore(): def get_varg(args): for i in range(1, len(sys.argv)): - if not sys.argv[i] in args: + if sys.argv[i] not in args: continue if i + 1 >= len(sys.argv):