Skip to content

Commit

Permalink
build(deps-dev): bump ruff from 0.0.282 to 0.0.283 (#1200)
Browse files Browse the repository at this point in the history
* build(deps-dev): bump ruff from 0.0.282 to 0.0.283

Bumps [ruff](https://github.com/astral-sh/ruff) from 0.0.282 to 0.0.283.
- [Release notes](https://github.com/astral-sh/ruff/releases)
- [Changelog](https://github.com/astral-sh/ruff/blob/main/BREAKING_CHANGES.md)
- [Commits](astral-sh/ruff@v0.0.282...v0.0.283)

---
updated-dependencies:
- dependency-name: ruff
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* fix, tests: use isinstance

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Pete Gadomski <[email protected]>
  • Loading branch information
dependabot[bot] and gadomski authored Aug 9, 2023
1 parent 381cf89 commit 00612b3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ test = [
"pytest-mock~=3.10",
"pytest-recording~=0.12",
"pytest~=7.3",
"ruff==0.0.282",
"ruff==0.0.283",
"types-html5lib~=1.1",
"types-orjson~=3.6",
"types-python-dateutil~=2.8",
Expand Down
2 changes: 1 addition & 1 deletion tests/test_collection.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def test_spatial_extent_from_coordinates(self) -> None:
bbox = extent.bboxes[0]
self.assertEqual(len(bbox), 4)
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()
Expand Down

0 comments on commit 00612b3

Please sign in to comment.