Skip to content

Commit

Permalink
fix pylint
Browse files Browse the repository at this point in the history
  • Loading branch information
montyly committed Oct 13, 2023
1 parent 167dc5b commit b265089
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion slither/slither.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit b265089

Please sign in to comment.