[Tarantool-patches] [PATCH luajit 01/15] test: fix E122 errors by pycodestyle

Sergey Bronnikov sergeyb at tarantool.org
Thu Aug 3 17:25:45 MSK 2023


LGTM

On 8/3/23 10:30, Igor Munkin wrote:
> 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)
>   


More information about the Tarantool-patches mailing list