Skip to content

Commit 08bcd50

Browse files
committed
refactor: remove depends_on from new fake email heuristic
Signed-off-by: Carl Flottmann <[email protected]>
1 parent c598ceb commit 08bcd50

File tree

1 file changed

+1
-5
lines changed
  • src/macaron/malware_analyzer/pypi_heuristics/metadata

1 file changed

+1
-5
lines changed

src/macaron/malware_analyzer/pypi_heuristics/metadata/fake_email.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,7 @@ class FakeEmailAnalyzer(BaseHeuristicAnalyzer):
3434
)
3535

3636
def __init__(self) -> None:
37-
super().__init__(
38-
name="fake_email_analyzer",
39-
heuristic=Heuristics.FAKE_EMAIL,
40-
depends_on=None,
41-
)
37+
super().__init__(name="fake_email_analyzer", heuristic=Heuristics.FAKE_EMAIL)
4238
self.check_deliverability: bool = self._load_defaults()
4339

4440
def _load_defaults(self) -> bool:

0 commit comments

Comments
 (0)