Skip to content

Commit

Permalink
dont use float_ and formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinsantana11 committed Oct 9, 2024
1 parent 6ebf753 commit c4f7b42
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion clouddrift/adapters/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import typing
import urllib
from datetime import datetime
from io import BufferedIOBase, BufferedWriter
from io import BufferedIOBase

import requests
from tenacity import (
Expand Down
2 changes: 1 addition & 1 deletion tests/ragged_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ def test_prune_dates(self):
np.testing.assert_equal(rowsize_new, [5, 8])

def test_prune_keep_nan(self):
x: list[int | float | np.float_] = [1, 2, np.nan, 1, 2, 1, 2, np.nan, 4]
x: list[int | float | np.float64] = [1, 2, np.nan, 1, 2, 1, 2, np.nan, 4]
rowsize = [3, 2, 4]
minimum = 3

Expand Down

0 comments on commit c4f7b42

Please sign in to comment.