Skip to content

Commit 4fb9052

Browse files
committed
ignored line check for lgtm
1 parent d8d7f33 commit 4fb9052

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

api_app/script_analyzers/observable_analyzers/stratosphere.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def run(self):
5454

5555
def download_dataset(self, url, db_loc):
5656
# Dataset website certificates are not correctly configured.
57-
p = requests.get(url, verify=False)
57+
p = requests.get(url, verify=False) # lgtm [py/request-without-cert-validation]
5858
p.raise_for_status()
5959

6060
with open(db_loc, "w") as f:

0 commit comments

Comments
 (0)