We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 381cf89 commit 00612b3Copy full SHA for 00612b3
pyproject.toml
@@ -64,7 +64,7 @@ test = [
64
"pytest-mock~=3.10",
65
"pytest-recording~=0.12",
66
"pytest~=7.3",
67
- "ruff==0.0.282",
+ "ruff==0.0.283",
68
"types-html5lib~=1.1",
69
"types-orjson~=3.6",
70
"types-python-dateutil~=2.8",
tests/test_collection.py
@@ -61,7 +61,7 @@ def test_spatial_extent_from_coordinates(self) -> None:
61
bbox = extent.bboxes[0]
62
self.assertEqual(len(bbox), 4)
63
for x in bbox:
- self.assertTrue(type(x) is float)
+ self.assertTrue(isinstance(x, float))
def test_read_eo_items_are_heritable(self) -> None:
cat = TestCases.case_5()
0 commit comments