Add TODOs.

This commit is contained in:
Felix Fontein 2025-10-07 21:47:45 +02:00
parent 25f89d3663
commit 5b7b3d4c52

View File

@ -392,7 +392,7 @@ disable=raw-checker-failed,
consider-using-with, consider-using-with,
fixme, fixme,
function-redefined, function-redefined,
import-error, import-error, # TODO figure out why pylint cannot find the module
invalid-name, invalid-name,
keyword-arg-before-vararg, keyword-arg-before-vararg,
line-too-long, line-too-long,
@ -400,8 +400,8 @@ disable=raw-checker-failed,
no-else-raise, no-else-raise,
no-else-return, no-else-return,
no-member, no-member,
no-name-in-module, no-name-in-module, # TODO figure out why pylint cannot find the module
not-an-iterable, not-an-iterable, # TODO: needs better typing info
protected-access, protected-access,
raise-missing-from, raise-missing-from,
redefined-outer-name, # needed for test fixtures redefined-outer-name, # needed for test fixtures
@ -413,7 +413,7 @@ disable=raw-checker-failed,
unnecessary-dunder-call, unnecessary-dunder-call,
unnecessary-pass, unnecessary-pass,
unspecified-encoding, unspecified-encoding,
unsupported-assignment-operation, unsupported-assignment-operation, # TODO: needs better typing info
unused-argument, unused-argument,
unused-variable, unused-variable,
use-dict-literal, use-dict-literal,