<HTML><BODY><div>Hi, Igor!</div><div>Thanks for the patch!</div><div>LGTM</div><div> </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_16910486341588007312_BODY">Fixed the only occurrence of E122 ("continuation line missing<br>indentation or outdented") error reported by pycodestyle[1].<br><br>[1]: <a href="https://www.flake8rules.com/rules/E122.html" target="_blank">https://www.flake8rules.com/rules/E122.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 | 4 ++--<br> 1 file changed, 2 insertions(+), 2 deletions(-)<br><br>diff --git a/src/luajit_lldb.py b/src/luajit_lldb.py<br>index 9ee10269..77d92785 100644<br>--- a/src/luajit_lldb.py<br>+++ b/src/luajit_lldb.py<br>@@ -617,8 +617,8 @@ LJ_T = {<br> <br> def itypemap(o):<br>     if LJ_64 and not LJ_GC64:<br>- return LJ_T['NUMX'] if tvisnumber(o) \<br>- else LJ_T['LIGHTUD'] if tvislightud(o) else itype(o)<br>+ return LJ_T['NUMX'] if tvisnumber(o) \<br>+ else LJ_T['LIGHTUD'] if tvislightud(o) else itype(o)<br>     else:<br>         return LJ_T['NUMX'] if tvisnumber(o) else itype(o)<br> <br>--<br>2.30.2</div></div></div></div></blockquote><div> </div></div></blockquote></BODY></HTML>