From a6b2e266990989d90070e5162a59935e1412b54a Mon Sep 17 00:00:00 2001 From: vladislav doster <10052309+vladdoster@users.noreply.github.com> Date: Sat, 3 Feb 2024 19:15:48 -0600 Subject: [PATCH] maint: remove duplicate imports in download_bsc5.py --- batoid/data/misc/download_bsc5.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/batoid/data/misc/download_bsc5.py b/batoid/data/misc/download_bsc5.py index d39ecd05..802cd653 100644 --- a/batoid/data/misc/download_bsc5.py +++ b/batoid/data/misc/download_bsc5.py @@ -7,10 +7,6 @@ url = "http://tdc-www.harvard.edu/catalogs/bsc5.dat.gz" - -from urllib.request import Request, urlopen -import gzip - response = urlopen(url) content = gzip.decompress(response.read()) decomp_req = content.splitlines()