<HTML><BODY><div>Hi, Igor!</div><div>Thanks for the patch!</div><div>LGTM</div><div data-signature-widget="container"><div data-signature-widget="content"><div>--<br>Best regards,</div><div>Maxim Kokryashkin</div></div></div><div> </div><div> </div><blockquote style="border-left:1px solid #0857A6; margin:10px; padding:0 0 0 10px;"><div> <blockquote style="border-left:1px solid #0857A6; margin:10px; padding:0 0 0 10px;"><div id=""><div class="js-helper js-readmsg-msg"><div><div id="style_16910486501632342400_BODY">Fixed the only occurrence of E711 ("comparison to None should be 'if<br>cond is not None:'") error reported by pycodestyle[1].<br><br>[1]: <a href="https://www.flake8rules.com/rules/E711.html" target="_blank">https://www.flake8rules.com/rules/E711.html</a><br><br>Signed-off-by: Igor Munkin <<a href="/compose?To=imun@tarantool.org">imun@tarantool.org</a>><br>---<br> src/luajit_lldb.py | 2 +-<br> 1 file changed, 1 insertion(+), 1 deletion(-)<br><br>diff --git a/src/luajit_lldb.py b/src/luajit_lldb.py<br>index 1442e367..e481cfa0 100644<br>--- a/src/luajit_lldb.py<br>+++ b/src/luajit_lldb.py<br>@@ -1087,7 +1087,7 @@ def configure(debugger):<br>     global LJ_64, LJ_GC64, LJ_FR2, LJ_DUALNUM, PADDING, LJ_TISNUM, target<br>     target = debugger.GetSelectedTarget()<br>     module = target.modules[0]<br>- LJ_DUALNUM = module.FindSymbol('lj_lib_checknumber') != None<br>+ LJ_DUALNUM = module.FindSymbol('lj_lib_checknumber') is not None<br> <br>     try:<br>         irtype_enum = target.FindFirstType('IRType').enum_members<br>--<br>2.30.2</div></div></div></div></blockquote><div> </div></div></blockquote></BODY></HTML>