Skip to content

Commit

Permalink
ignored line check for lgtm
Browse files Browse the repository at this point in the history
  • Loading branch information
mlodic committed Jan 2, 2021
1 parent d8d7f33 commit 4fb9052
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def run(self):

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

with open(db_loc, "w") as f:
Expand Down

0 comments on commit 4fb9052

Please sign in to comment.