Skip to content

Commit a4523c1

Browse files
committed
Merge remote-tracking branch 'origin/v2' into v2
2 parents 4ef6020 + 13d7558 commit a4523c1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cli/arguments_builders/search_cli_arguments.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def add_search_term_country_opt(self):
2020
self.parser.add_argument('--country', type=str, help='Country (3 digit ISO) e.g. swe')
2121

2222
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'})
23+
self.parser.add_argument('--verdict', type=int, help='Verdict', choices={1: 'whitelisted', 2: 'no verdict', 3: 'no specific threat', 4: 'suspicious', 5: 'malicious'})
2424

2525
def add_search_term_av_detect_opt(self):
2626
def type_av_detect(value):

0 commit comments

Comments
 (0)