diff --git a/slither/tools/mutator/mutators/abstract_mutator.py b/slither/tools/mutator/mutators/abstract_mutator.py index 8e204bf2b..2d1e68107 100644 --- a/slither/tools/mutator/mutators/abstract_mutator.py +++ b/slither/tools/mutator/mutators/abstract_mutator.py @@ -74,6 +74,7 @@ class AbstractMutator( """TODO Documentation""" return {} + # pylint: disable=too-many-branches def mutate(self) -> Tuple[List[int], List[int], List[int]]: # call _mutate function from different mutators (all_patches) = self._mutate()