Skip to content

Commit

Permalink
INTEGRALSWRQ-158: pycodestyle fixes in esa.utils
Browse files Browse the repository at this point in the history
  • Loading branch information
jespinosaar committed Jan 24, 2025
1 parent 5050e65 commit f181ac8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions astroquery/esa/utils/tests/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ def test_download_cache(self, mock_get, tmp_cwd):
def test_read_tar(self):
temp_path = create_temp_folder()
tar_file = copy_to_temporal_path(data_path=data_path('tar_file.tar'), temp_folder=temp_path,
filename='tar_file.tar')
filename='tar_file.tar')

files = esautils.read_downloaded_fits([tar_file])

Expand All @@ -231,7 +231,7 @@ def test_read_tar(self):
def test_read_tar_gz(self):
temp_path = create_temp_folder()
tar_gz_file = copy_to_temporal_path(data_path=data_path('tar_gz_file.tar.gz'), temp_folder=temp_path,
filename='tar_gz_file.tar.gz')
filename='tar_gz_file.tar.gz')

files = esautils.read_downloaded_fits([tar_gz_file])

Expand All @@ -245,7 +245,7 @@ def test_read_tar_gz(self):
def test_read_zip(self):
temp_path = create_temp_folder()
zip_file = copy_to_temporal_path(data_path=data_path('zip_file.zip'), temp_folder=temp_path,
filename='zip_file.zip')
filename='zip_file.zip')

files = esautils.read_downloaded_fits([zip_file])

Expand Down

0 comments on commit f181ac8

Please sign in to comment.