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 dc2602c commit 953c10c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions imap_processing/codice/codice_l1a.py
Original file line number Diff line number Diff line change
Expand Up @@ -334,11 +334,11 @@ def unpack_lo_science_data(self, science_values: str) -> None:
# energy levels
self.data = []
for counter_data in science_values_unpacked:
data_array: list[list[int]] = [
data_array = [
counter_data[i : i + self.num_energy_steps]
for i in range(0, len(counter_data), self.num_energy_steps)
]
self.data.append(data_array)
self.data.append(data_array) # type: ignore[arg-type]


def create_event_dataset(
Expand Down

0 comments on commit 953c10c

Please sign in to comment.