From 5b7b3d4c52c2219b4270ec6af0e62fbcf300e33a Mon Sep 17 00:00:00 2001 From: Felix Fontein Date: Tue, 7 Oct 2025 21:47:45 +0200 Subject: [PATCH] Add TODOs. --- .pylintrc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.pylintrc b/.pylintrc index d0f45ad0..0dc0a1d6 100644 --- a/.pylintrc +++ b/.pylintrc @@ -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,