Skip to content

Commit

Permalink
Sort imports
Browse files Browse the repository at this point in the history
  • Loading branch information
mraspaud committed Nov 25, 2021
1 parent 28b1c1d commit a0294d4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion satpy/readers/ahi_l1b_gridded_bin.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,8 +142,9 @@ def _calibrate(self, data):
@staticmethod
def _download_luts(file_name):
"""Download LUTs from remote server."""
import urllib
import shutil
import urllib

# Set up an connection and download
with urllib.request.urlopen(AHI_REMOTE_LUTS) as response: # nosec
with open(file_name, 'wb') as out_file:
Expand Down

0 comments on commit a0294d4

Please sign in to comment.