Skip to content

Commit

Permalink
fix: typo in type hint
Browse files Browse the repository at this point in the history
  • Loading branch information
seballgeyer committed Jul 22, 2024
1 parent 9523322 commit fefbaba
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 @@ -242,7 +242,7 @@ def getVelSpline(sp3Df: _pd.DataFrame) -> _pd.DataFrame:
return _pd.concat([sp3Df, _pd.concat([velDf], keys=["VELi"], axis=1)], axis=1)


def getVelPoly(sp3Df: _pd.Dataframe, deg: int = 35):
def getVelPoly(sp3Df: _pd.DataFrame, deg: int = 35):
"""
Interpolates the positions for -1s and +1s in the sp3_df DataFrame and outputs velocities.
Expand Down

0 comments on commit fefbaba

Please sign in to comment.