ruff: add ARG linter

this mostly either removes unused parameters, prefixes them with an
underscore or uses the @override decorator to tell the linter, that that
method comes from a superclass and can't be changed
This commit is contained in:
Marcel Hellwig
2026-01-04 21:55:15 +01:00
parent 6e46b482cb
commit 55b2dd63d8
8 changed files with 39 additions and 17 deletions

View File

@@ -15,7 +15,7 @@ from media_manager.tv.service import (
)
def setup_scheduler(config, log):
def setup_scheduler(config):
from media_manager.database import init_engine
init_engine(config.database)