From 473953c50845b5fced134b6daaf83f01f1262cb3 Mon Sep 17 00:00:00 2001 From: Zahra Date: Thu, 18 Sep 2025 09:41:57 -0600 Subject: [PATCH 1/2] Remove deprecated mixin options from .pylintrc --- .pylintrc | 3 --- 1 file changed, 3 deletions(-) diff --git a/.pylintrc b/.pylintrc index 897842f..d85dbbb 100644 --- a/.pylintrc +++ b/.pylintrc @@ -273,9 +273,6 @@ contextmanager-decorators=contextlib.contextmanager,tensorflow.python.util.tf_co # expressions are accepted. generated-members=torch.*,cv2.* -# Tells whether missing members accessed in mixin class should be ignored. A -# mixin class is detected if its name ends with "mixin" (case insensitive). -ignore-mixin-members=yes # This flag controls whether pylint should warn about no-member and similar # checks whenever an opaque object is returned when inferring. The inference From c75e09319fa92442c78e512e8ad74d4e81ae925f Mon Sep 17 00:00:00 2001 From: Zahra Date: Thu, 18 Sep 2025 09:43:46 -0600 Subject: [PATCH 2/2] Update overgeneral exceptions in .pylintrc --- .pylintrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pylintrc b/.pylintrc index d85dbbb..a98d05d 100644 --- a/.pylintrc +++ b/.pylintrc @@ -421,4 +421,4 @@ known-third-party=enchant # Exceptions that will emit a warning when being caught. Defaults to # "Exception" -overgeneral-exceptions=Exception +overgeneral-exceptions=builtins.Exception, builtins.BaseException