You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix line length violations and remove unnecessary PLW0717 suppression from test files
Replace # noqa: LN001 suppressions with properly split strings wrapped
in parentheses to satisfy ISC004. Remove PLW0717 from the test file
ignore list — test files have no violations so the suppression was
unnecessary.
r'^Got a connection error while handling a connection from .*:\d{1,5} \(666\)', # noqa: LN001
792
+
(
793
+
r'^Got a connection error while handling a connection '
794
+
r'from .*:\d{1,5} \(666\)'
795
+
),
792
796
),
793
797
(
794
798
logging.CRITICAL,
795
-
r'A fatal exception happened\. Setting the server interrupt flag to ConnectionResetError\(666,?\) and giving up\.\n\nPlease, report this on the Cheroot tracker at <https://github\.com/cherrypy/cheroot/issues/new/choose>, providing a full reproducer with as much context and details as possible\.$', # noqa: LN001
799
+
(
800
+
r'A fatal exception happened\. Setting the server interrupt flag '
801
+
r'to ConnectionResetError\(666,?\) and giving up\.\n\nPlease, '
0 commit comments