From: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 9 Jun 2024 12:34:18 +0000 (+0200) Subject: Bump codespell from 2.2.6 to 2.3.0 (#1326) X-Git-Url: https://git.kitaultman.com/?a=commitdiff_plain;h=1fb7f284098c37e740edf4914257da75271c2ff0;p=music-assistant-server.git Bump codespell from 2.2.6 to 2.3.0 (#1326) * Bump codespell from 2.2.6 to 2.3.0 Bumps [codespell](https://github.com/codespell-project/codespell) from 2.2.6 to 2.3.0. - [Release notes](https://github.com/codespell-project/codespell/releases) - [Commits](https://github.com/codespell-project/codespell/compare/v2.2.6...v2.3.0) --- updated-dependencies: - dependency-name: codespell dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] * fix typo --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Marcel van der Veldt --- diff --git a/music_assistant/server/controllers/cache.py b/music_assistant/server/controllers/cache.py index 633cdfc6..278c2af3 100644 --- a/music_assistant/server/controllers/cache.py +++ b/music_assistant/server/controllers/cache.py @@ -153,7 +153,7 @@ class CacheController(CoreController): self.logger.info("Clearing database DONE") async def auto_cleanup(self) -> None: - """Sceduled auto cleanup task.""" + """Run scheduled auto cleanup task.""" self.logger.debug("Running automatic cleanup...") # for now we simply reset the memory cache self._mem_cache = {} diff --git a/pyproject.toml b/pyproject.toml index 803d6c1e..14a07c83 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -42,7 +42,7 @@ server = [ "ifaddr==0.2.0", ] test = [ - "codespell==2.2.6", + "codespell==2.3.0", "isort==5.13.2", "mypy==1.10.0", "pre-commit==3.7.1",