Skip to content

Commit

Permalink
Typo in contamination export function
Browse files Browse the repository at this point in the history
  • Loading branch information
AlanLoh committed Oct 10, 2023
1 parent ab1a681 commit 5ef7b30
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion nenupy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
__copyright__ = "Copyright 2023, nenupy"
__credits__ = ["Alan Loh"]
__license__ = "MIT"
__version__ = "2.3.14"
__version__ = "2.3.15"
__maintainer__ = "Alan Loh"
__email__ = "alan.loh@obspm.fr"

Expand Down
2 changes: 1 addition & 1 deletion nenupy/schedule/contamination.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ def export(self, filename: str , in_bytes: bool = False) -> None:
)
freq_mhz = self.frequency.to_value(u.MHz)
freq_hdu = fits.BinTableHDU.from_columns(
[fits.Column(name="freq_mhz", format="f8", array=freq_mhz)]
[fits.Column(name="frequency_mhz", format="f8", array=freq_mhz)]
)

data = np.zeros(f_size, dtype=dtype)
Expand Down

0 comments on commit 5ef7b30

Please sign in to comment.