From f3d33c27993e888c637eefa72c0a0de159bd5088 Mon Sep 17 00:00:00 2001 From: Martin Hjelmare Date: Fri, 8 Nov 2024 14:45:52 +0100 Subject: [PATCH] Delint --- haffmpeg/core.py | 1 + pylintrc | 1 + 2 files changed, 2 insertions(+) diff --git a/haffmpeg/core.py b/haffmpeg/core.py index d3ee93c..9367fa0 100644 --- a/haffmpeg/core.py +++ b/haffmpeg/core.py @@ -215,6 +215,7 @@ async def _process_lines(self, pattern: Optional[str] = None) -> None: except Exception: # pylint: disable=broad-except break + # pylint: disable-next=possibly-used-before-assignment match = True if pattern is None else cmp.search(line) if match: _LOGGER.debug("Process: %s", line) diff --git a/pylintrc b/pylintrc index 8a1c612..cf9bafb 100644 --- a/pylintrc +++ b/pylintrc @@ -11,6 +11,7 @@ disable= locally-disabled, too-few-public-methods, too-many-arguments, + too-many-positional-arguments, too-many-branches, too-many-instance-attributes, too-many-lines,