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