From 86ffcc8d43818689f2ad5defa94c93fef671064f Mon Sep 17 00:00:00 2001 From: lajoskatona Date: Fri, 12 Sep 2025 11:52:57 +0200 Subject: [PATCH] pep8: Ignore N535 eventlet checking hacking rule Change-Id: If5a5eb7044ed7d31f10478d93e394f95a21a2ba1 Signed-off-by: lajoskatona --- tox.ini | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index d46248c0a..bd4987fc0 100644 --- a/tox.ini +++ b/tox.ini @@ -136,7 +136,8 @@ commands = # TODO(dougwig) -- uncomment this to test for remaining linkages # N530 direct neutron imports not allowed # N531 Log messages require translation hints -ignore = E125,E126,E128,E129,E265,W504,I202,H404,H405,N530,N531 +# N535 Usage of Python eventlet module not allowed +ignore = E125,E126,E128,E129,E265,W504,I202,H404,H405,N530,N535,N531 # H106 Don't put vim configuration in source files # H203 Use assertIs(Not)None to check for None # H904 Delay string interpolations at logging calls