fix: [pep] Comply to PEP E261

pull/395/head
Steve Clement 2020-05-01 12:12:33 +09:00
parent dbb7d37b1e
commit 3fd6633c01
No known key found for this signature in database
GPG Key ID: 69A20F509BE4AEE9
1 changed files with 3 additions and 3 deletions

View File

@ -73,9 +73,9 @@ def handler(q=False):
do_not_include_vmrayjobids = request["config"].get("do_not_include_vmrayjobids")
try:
shareable = bool(strtobool(shareable)) # Do we want the sample to be shared?
reanalyze = not bool(strtobool(do_not_reanalyze)) # Always reanalyze the sample?
include_vmrayjobids = not bool(strtobool(do_not_include_vmrayjobids)) # Include the references to VMRay job IDs
shareable = bool(strtobool(shareable)) # Do we want the sample to be shared?
reanalyze = not bool(strtobool(do_not_reanalyze)) # Always reanalyze the sample?
include_vmrayjobids = not bool(strtobool(do_not_include_vmrayjobids)) # Include the references to VMRay job IDs
except ValueError:
misperrors["error"] = "Error while processing settings. Please double-check your values."
return misperrors