Skip to content

Commit

Permalink
Fixing mypy errors
Browse files Browse the repository at this point in the history
  • Loading branch information
bourque committed Sep 11, 2024
1 parent 77c10c9 commit 098674c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion imap_processing/codice/codice_l1a.py
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ def get_energy_table(self) -> list[float]:

# Get the appropriate values
sweep_table = sweep_data[sweep_data["table_idx"] == sweep_table_id]
energy_table = sweep_table["esa_v"].values
energy_table: list[float] = sweep_table["esa_v"].values

return energy_table

Expand Down

0 comments on commit 098674c

Please sign in to comment.