Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ dev-noxfile = [
"frequenz-repo-config[lib] == 0.13.8",
]
dev-pylint = [
"pylint == 3.3.8",
"pylint == 4.0.4",
# For checking the noxfile, docs/ script, and tests
"frequenz-dispatch[dev-mkdocs,dev-noxfile,dev-pytest]",
]
Expand Down
2 changes: 1 addition & 1 deletion src/frequenz/dispatch/_bg_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ def start(self) -> None:
"""Start the background service."""
self._tasks.add(asyncio.create_task(self._run()))

async def _run(self) -> None:
async def _run(self) -> None: # pylint: disable=too-many-branches
"""Run the background service."""
_logger.info(
"Starting dispatching background service for microgrid %s",
Expand Down