Bump ruff from 0.4.4 to 0.4.8 (#1343)
authordependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Fri, 14 Jun 2024 21:04:52 +0000 (23:04 +0200)
committerGitHub <noreply@github.com>
Fri, 14 Jun 2024 21:04:52 +0000 (23:04 +0200)
* Bump ruff from 0.4.4 to 0.4.8

Bumps [ruff](https://github.com/astral-sh/ruff) from 0.4.4 to 0.4.8.
- [Release notes](https://github.com/astral-sh/ruff/releases)
- [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md)
- [Commits](https://github.com/astral-sh/ruff/compare/v0.4.4...v0.4.8)

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

Signed-off-by: dependabot[bot] <support@github.com>
* lint

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Marcel van der Veldt <m.vanderveldt@outlook.com>
music_assistant/common/helpers/json.py
pyproject.toml

index 839a19dffe0955c4766fa81585fab3122543d273..845fbecedcef1e4e37794ad01638b96385c13f7e 100644 (file)
@@ -2,12 +2,12 @@
 
 import asyncio
 import base64
+from _collections_abc import dict_keys, dict_values
 from types import MethodType
 from typing import Any
 
 import aiofiles
 import orjson
-from _collections_abc import dict_keys, dict_values
 
 JSON_ENCODE_EXCEPTIONS = (TypeError, ValueError)
 JSON_DECODE_EXCEPTIONS = (orjson.JSONDecodeError,)
index 1d13704e85f0a54f55f43f073375aa5973fb5798..e8b4c5a354ee7efc90c361370883dcad15d4d765 100644 (file)
@@ -52,7 +52,7 @@ test = [
   "pytest-aiohttp==1.0.5",
   "pytest-cov==5.0.0",
   "tomli==2.0.1",
-  "ruff==0.4.4",
+  "ruff==0.4.8",
 ]
 
 [project.scripts]