Skip to content

Commit

Permalink
use different types
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinsantana11 committed Aug 24, 2024
1 parent eaa260f commit 37113e7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions clouddrift/adapters/gdp/gdpsource.py
Original file line number Diff line number Diff line change
Expand Up @@ -361,9 +361,9 @@ def _apply_transform(


def _parse_datetime_with_day_ratio(
month_series: np.ndarray[t.Any, np.dtype[np.int_]],
day_series: np.ndarray[t.Any, np.dtype[np.float_]],
year_series: np.ndarray[t.Any, np.dtype[np.int_]],
month_series: np.ndarray[t.Any, np.dtype[np.float32]],
day_series: np.ndarray[t.Any, np.dtype[np.float32]],
year_series: np.ndarray[t.Any, np.dtype[np.float32]],
) -> np.ndarray[t.Any, np.dtype[np.datetime64]]:
values = list()
for month, day_with_ratio, year in zip(month_series, day_series, year_series):
Expand Down

0 comments on commit 37113e7

Please sign in to comment.