From 77201add57d780f6e968f54347103f493ab00e26 Mon Sep 17 00:00:00 2001 From: tserg <8017125+tserg@users.noreply.github.com> Date: Thu, 20 Feb 2025 15:41:06 +0800 Subject: [PATCH] fix lint --- vyper/builtins/_convert.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vyper/builtins/_convert.py b/vyper/builtins/_convert.py index c45b131a72..f401fa1da4 100644 --- a/vyper/builtins/_convert.py +++ b/vyper/builtins/_convert.py @@ -382,7 +382,7 @@ def to_bytes_m(expr, arg, out_typ): with num_zero_bits.cache_when_complex("bits") as (b, num_zero_bits): arg = shl(num_zero_bits, shr(num_zero_bits, bytes_val)) arg = b.resolve(arg) - + else: _FAIL(arg.typ, out_typ, expr)