Skip to content

Commit

Permalink
feat(Triage) adding vars types
Browse files Browse the repository at this point in the history
  • Loading branch information
r1chev committed Jan 7, 2025
1 parent 1bb4140 commit 5e7c403
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Triage/triage_modules/trigger_triage.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,8 +140,8 @@ def check_sample_signature(self, sample_id: str) -> bool:

def check_suspicious_analysis(self, sample_id: str, data: dict) -> bool:
try:
tags: list()
tasks: list()
tags = list()
tasks = list()
tags = data.get("analysis")["tags"]
if "linux" in tags:
return False
Expand Down

0 comments on commit 5e7c403

Please sign in to comment.