Skip to content

Commit

Permalink
nit
Browse files Browse the repository at this point in the history
  • Loading branch information
pabloperezj committed Jul 8, 2024
1 parent 41c899f commit aa77f13
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@
"useAsKpi": true,
"version": -1,
"fromVersion": "5.5.0"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@
"useAsKpi": true,
"version": -1,
"fromVersion": "5.5.0"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@
"useAsKpi": true,
"version": -1,
"fromVersion": "5.5.0"
}
}
8 changes: 4 additions & 4 deletions Packs/VirusTotal/Integrations/VirusTotalV3/VirusTotalV3.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ def __init__(

def to_context(self):
context = super().to_context()
file_context = context[Common.File.CONTEXT_PATH]
file_context = context[super().CONTEXT_PATH]

if self.count_vt_vendors_which_flagged_malicious is not None:
file_context['Count VT Vendors Which Flagged Malicious'] = self.count_vt_vendors_which_flagged_malicious
Expand Down Expand Up @@ -156,7 +156,7 @@ def __init__(

def to_context(self):
context = super().to_context()
file_context = context[Common.IP.CONTEXT_PATH]
file_context = context[super().CONTEXT_PATH]

if self.count_vt_vendors_which_flagged_malicious is not None:
file_context['Count VT Vendors Which Flagged Malicious'] = self.count_vt_vendors_which_flagged_malicious
Expand Down Expand Up @@ -194,7 +194,7 @@ def __init__(

def to_context(self):
context = super().to_context()
file_context = context[Common.URL.CONTEXT_PATH]
file_context = context[super().CONTEXT_PATH]

if self.count_vt_vendors_which_flagged_malicious is not None:
file_context['Count VT Vendors Which Flagged Malicious'] = self.count_vt_vendors_which_flagged_malicious
Expand Down Expand Up @@ -232,7 +232,7 @@ def __init__(

def to_context(self):
context = super().to_context()
file_context = context[Common.Domain.CONTEXT_PATH]
file_context = context[super().CONTEXT_PATH]

if self.count_vt_vendors_which_flagged_malicious is not None:
file_context['Count VT Vendors Which Flagged Malicious'] = self.count_vt_vendors_which_flagged_malicious
Expand Down

0 comments on commit aa77f13

Please sign in to comment.