Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
olegggatttor committed Apr 12, 2024
1 parent d9a684c commit 93f49f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion slitherin/detectors/strange_setter.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def _is_strange_setter(self, fun: Function) -> bool:
return intersection_len != len(fun.parameters)

def _is_strange_constructor(self, fun: Function) -> bool:
"""Checks if constructor setqs nothing"""
"""Checks if constructor sets nothing"""
return self._is_strange_setter(fun)

def _detect(self) -> List[Output]:
Expand Down

0 comments on commit 93f49f2

Please sign in to comment.