Skip to content

Commit

Permalink
idex update
Browse files Browse the repository at this point in the history
  • Loading branch information
daralynnrhode committed Aug 6, 2024
1 parent 98fc090 commit 1f9b581
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions imap_processing/idex/l1/idex_l1.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
from enum import IntEnum

import numpy as np
import numpy.typing as npt
import space_packet_parser
import xarray as xr

Expand Down Expand Up @@ -421,7 +422,7 @@ def _parse_low_sample_waveform(self, waveform_raw: str) -> list[int]:
]
return ints

def _calc_low_sample_resolution(self, num_samples: int) -> np.ndarray:
def _calc_low_sample_resolution(self, num_samples: int) -> npt.NDArray:
"""
Calculate the resolution of the low samples.
Expand All @@ -447,7 +448,7 @@ def _calc_low_sample_resolution(self, num_samples: int) -> np.ndarray:
)
return time_low_sr_data

def _calc_high_sample_resolution(self, num_samples: int) -> np.ndarray:
def _calc_high_sample_resolution(self, num_samples: int) -> npt.NDArray:
"""
Calculate the resolution of high samples.
Expand Down

0 comments on commit 1f9b581

Please sign in to comment.