From b2650895c47563e8541ced3ff232e29e79712d35 Mon Sep 17 00:00:00 2001 From: Feist Josselin Date: Fri, 13 Oct 2023 11:27:10 +0200 Subject: [PATCH] fix pylint --- slither/slither.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/slither/slither.py b/slither/slither.py index 773ab9f742..747d2207ef 100644 --- a/slither/slither.py +++ b/slither/slither.py @@ -50,7 +50,9 @@ def _update_file_scopes(candidates: ValuesView[FileScope]): learned_something = False -class Slither(SlitherCore): # pylint: disable=too-many-instance-attributes +class Slither( + SlitherCore +): # pylint: disable=too-many-instance-attributes,too-many-locals,too-many-statements def __init__(self, target: Union[str, CryticCompile], **kwargs) -> None: """ Args: