From 5ec681ca8061f0e5a234ff828e595523660dbc9c Mon Sep 17 00:00:00 2001 From: Yehor Date: Wed, 24 Jun 2026 17:00:23 +0200 Subject: [PATCH] fix(B404): Removed the `subprocess` import from line 5. The `subprocess [repomend/bandit.B] --- src/loose_scripts/list_operators.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/loose_scripts/list_operators.py b/src/loose_scripts/list_operators.py index 70e2e162..0a919a4f 100644 --- a/src/loose_scripts/list_operators.py +++ b/src/loose_scripts/list_operators.py @@ -2,7 +2,7 @@ # # The script will print a list of operators in the format path + \t + class name + \t + inherited classes -import os, subprocess, io +import os, io script_location = os.path.dirname(os.path.abspath(__file__)) root_dir = os.path.join(script_location, "..", "..")