Skip to content

Commit

Permalink
Removing assignment to unsued variable file_data
Browse files Browse the repository at this point in the history
  • Loading branch information
eunkyuh committed Dec 2, 2024
1 parent 451cd9a commit 28227c4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions romanisim/tests/test_bandpass.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ def test_read_gsfc_effarea(tmpdir_factory, sca=1):
data_table['Dwarf Planet'] = ['Eris', 'Pluto', 'Makemake', 'Haumeua']
data_table.write(table_file)

with open(table_file, 'r') as tmp_file:
file_data = tmp_file.read()
# with open(table_file, 'r') as tmp_file:
# file_data = tmp_file.read()
# Removing the followings as the ECSV files should start with the ECSV version
# with open(table_file, 'w') as tmp_file:
# tmp_file.write("Header Comment line \n" + file_data)
Expand Down

0 comments on commit 28227c4

Please sign in to comment.