From f77cd5a1d82a1b34796d66e43c9fd3cfa2f50a41 Mon Sep 17 00:00:00 2001 From: Razvan Crainea Date: Tue, 20 Aug 2024 13:18:47 +0300 Subject: [PATCH] fix a set of lint warnings --- sipssert/tasks_list.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sipssert/tasks_list.py b/sipssert/tasks_list.py index 626f6f7..9af29fb 100644 --- a/sipssert/tasks_list.py +++ b/sipssert/tasks_list.py @@ -17,7 +17,9 @@ ## along with this program. If not, see . ## -import os + +"""Implements the behavior of a list of tasks""" + import time import importlib from sipssert import logger @@ -25,8 +27,6 @@ from sipssert.testing import TestStatus from sipssert.config import ConfigLevel -"""Implements the behavior of a list of tasks""" - TIMEOUT_GRANULARITY = 0.1 # seconds class TasksList(list):