Skip to content

Commit

Permalink
pre-commit will pass but docs will not
Browse files Browse the repository at this point in the history
  • Loading branch information
daralynnrhode committed Aug 7, 2024
1 parent d19224c commit 6dafeb1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions imap_processing/swapi/l1/swapi_l1.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from imap_processing.utils import packet_file_to_datasets


def filter_good_data(full_sweep_sci: xr.Dataset) -> np.ndarray:
def filter_good_data(full_sweep_sci: xr.Dataset) -> npt.NDArray:
"""
Filter out bad data sweep indices.
Expand Down Expand Up @@ -71,7 +71,7 @@ def filter_good_data(full_sweep_sci: xr.Dataset) -> np.ndarray:

def decompress_count(
count_data: np.ndarray, compression_flag: np.ndarray
) -> np.ndarray:
) -> npt.NDArray:
"""
Will decompress counts based on compression indicators.
Expand Down Expand Up @@ -121,7 +121,7 @@ def decompress_count(
return new_count


def find_sweep_starts(packets: xr.Dataset) -> np.ndarray:
def find_sweep_starts(packets: xr.Dataset) -> npt.NDArray:
"""
Find index of where new cycle started.
Expand Down

0 comments on commit 6dafeb1

Please sign in to comment.