Hi, Igor! Thanks for the patch! LGTM   -- Best regards, Maxim Kokryashkin     >  >>Fixed the only occurrence of E122 ("continuation line missing >>indentation or outdented") error reported by pycodestyle[1]. >> >>[1]: https://www.flake8rules.com/rules/E122.html >> >>Signed-off-by: Igor Munkin < imun@tarantool.org > >>--- >> src/luajit_lldb.py | 4 ++-- >> 1 file changed, 2 insertions(+), 2 deletions(-) >> >>diff --git a/src/luajit_lldb.py b/src/luajit_lldb.py >>index 9ee10269..77d92785 100644 >>--- a/src/luajit_lldb.py >>+++ b/src/luajit_lldb.py >>@@ -617,8 +617,8 @@ LJ_T = { >>  >> def itypemap(o): >>     if LJ_64 and not LJ_GC64: >>- return LJ_T['NUMX'] if tvisnumber(o) \ >>- else LJ_T['LIGHTUD'] if tvislightud(o) else itype(o) >>+ return LJ_T['NUMX'] if tvisnumber(o) \ >>+ else LJ_T['LIGHTUD'] if tvislightud(o) else itype(o) >>     else: >>         return LJ_T['NUMX'] if tvisnumber(o) else itype(o) >>  >>-- >>2.30.2 >