There was an error while loading. Please reload this page.
2 parents 4ef6020 + 13d7558 commit a4523c1Copy full SHA for a4523c1
cli/arguments_builders/search_cli_arguments.py
@@ -20,7 +20,7 @@ def add_search_term_country_opt(self):
20
self.parser.add_argument('--country', type=str, help='Country (3 digit ISO) e.g. swe')
21
22
def add_search_term_verdict_opt(self):
23
- self.parser.add_argument('--verdict', type=str, help='Verdict', choices={1: 'whitelisted', 2: 'no verdict', 3: 'no specific threat', 4: 'suspicious', 5: 'malicious'})
+ self.parser.add_argument('--verdict', type=int, help='Verdict', choices={1: 'whitelisted', 2: 'no verdict', 3: 'no specific threat', 4: 'suspicious', 5: 'malicious'})
24
25
def add_search_term_av_detect_opt(self):
26
def type_av_detect(value):
0 commit comments