From 509e3062fa2c59b32b52acee122927864695dac3 Mon Sep 17 00:00:00 2001 From: Kamalesh Babulal Date: Wed, 11 Jan 2023 10:29:29 -0700 Subject: [PATCH] ftests/cgroup.py: fix lint warning Fix the warning 'cgroup.py:998:1: E302 expected 2 blank lines, found 1' Signed-off-by: Kamalesh Babulal Signed-off-by: Tom Hromatka --- tests/ftests/cgroup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/ftests/cgroup.py b/tests/ftests/cgroup.py index 01b9faa9..49ac3945 100644 --- a/tests/ftests/cgroup.py +++ b/tests/ftests/cgroup.py @@ -995,6 +995,7 @@ class Cgroup(object): else: raise CgroupError('Unknown cgroup mode') + class CgroupError(Exception): def __init__(self, message): super(CgroupError, self).__init__(message) -- 2.47.3