[Tarantool-patches] [PATCH luajit 01/15] test: fix E122 errors by pycodestyle
Maxim Kokryashkin
m.kokryashkin at tarantool.org
Thu Aug 3 18:49:51 MSK 2023
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 at 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
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.tarantool.org/pipermail/tarantool-patches/attachments/20230803/0d9347a7/attachment.htm>
More information about the Tarantool-patches
mailing list