Skip to content

Commit

Permalink
Fixed mypy errors
Browse files Browse the repository at this point in the history
  • Loading branch information
bourque committed Aug 20, 2024
1 parent 7ae84a4 commit dc2602c
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 @@ -334,7 +334,7 @@ def unpack_lo_science_data(self, science_values: str) -> None:
# energy levels
self.data = []
for counter_data in science_values_unpacked:
data_array = [
data_array: list[list[int]] = [
counter_data[i : i + self.num_energy_steps]
for i in range(0, len(counter_data), self.num_energy_steps)
]
Expand Down

0 comments on commit dc2602c

Please sign in to comment.