Skip to content

Commit

Permalink
NPI-3683 add return type hint prompted by PR feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
treefern committed Jan 14, 2025
1 parent 4e2d491 commit 955b41a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gnssanalysis/gn_io/sp3.py
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ def sp3_clock_nodata_to_nan(sp3_df: _pd.DataFrame) -> None:
sp3_df.loc[nan_mask, ("EST", "CLK")] = _np.nan


def remove_svs_from_header(sp3_df: _pd.DataFrame, sats_to_remove: set[str]):
def remove_svs_from_header(sp3_df: _pd.DataFrame, sats_to_remove: set[str]) -> None:
"""
Utility function to update the internal representation of an SP3 header, when SVs are removed from the SP3
DataFrame. This is useful e.g. when removing offline satellites.
Expand Down

0 comments on commit 955b41a

Please sign in to comment.