miniflux: Ignore an type check error with pexpect library

- Even though pexpect is set for override in pyproject.toml latest
mypy==1.13.0-2 on Debian testing throws an error here.

Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org>
Reviewed-by: Joseph Nuthalapati <njoseph@riseup.net>
This commit is contained in:
Sunil Mohan Adapa 2024-12-30 22:43:53 -08:00 committed by Joseph Nuthalapati
parent a62e66daec
commit 67cef398e1
No known key found for this signature in database
GPG Key ID: 5398F00A2FA43C35

View File

@ -83,7 +83,7 @@ def _run_miniflux_interactively(command: str, username: str,
child.sendline(password)
child.expect(pexpect.EOF)
raw_message = child.before.decode()
raw_message = child.before.decode() # type: ignore
try:
json_message = json.loads(raw_message)
except (KeyError, json.JSONDecodeError):