From 214de403adc15d60687c2384d8e878f6c23d2cab Mon Sep 17 00:00:00 2001 From: Kamalesh Babulal Date: Mon, 3 Apr 2023 15:35:00 +0530 Subject: [PATCH] ftests-050: fix flake8 unused import warning Fix "F401 'run.Run' imported but unused" flake8 warning. Signed-off-by: Kamalesh Babulal Signed-off-by: Tom Hromatka (cherry picked from commit ee448a114de9382bc4cef1cd2c041f00a4009178) --- tests/ftests/050-sudo-systemd_create_scope_w_pid.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/ftests/050-sudo-systemd_create_scope_w_pid.py b/tests/ftests/050-sudo-systemd_create_scope_w_pid.py index f1b5217e..68823482 100755 --- a/tests/ftests/050-sudo-systemd_create_scope_w_pid.py +++ b/tests/ftests/050-sudo-systemd_create_scope_w_pid.py @@ -9,10 +9,10 @@ from cgroup import Cgroup as CgroupCli from cgroup import CgroupVersion -from run import Run, RunError from libcgroup import Cgroup from systemd import Systemd from process import Process +from run import RunError import ftests import consts import sys -- 2.47.2