diff --git a/pate_binja/pate.py b/pate_binja/pate.py index e06c9167..c89a28ef 100644 --- a/pate_binja/pate.py +++ b/pate_binja/pate.py @@ -1735,7 +1735,7 @@ def simplify_sexp(sexp, env=None): # ('_', 'extract', s, e)(n) => n if (isinstance(op, list) and len(op) == 4 and op[0] == '_' and op[1] == 'extract' - and len(arg) == 1 and isinstance(arg[0], str)): + and len(arg) == 1): return f'{arg[0]}<{op[2]}:{op[3]}>' # Simplify call(F, args...) => F(args...)