We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d8d7f33 commit 4fb9052Copy full SHA for 4fb9052
api_app/script_analyzers/observable_analyzers/stratosphere.py
@@ -54,7 +54,7 @@ def run(self):
54
55
def download_dataset(self, url, db_loc):
56
# Dataset website certificates are not correctly configured.
57
- p = requests.get(url, verify=False)
+ p = requests.get(url, verify=False) # lgtm [py/request-without-cert-validation]
58
p.raise_for_status()
59
60
with open(db_loc, "w") as f:
0 commit comments