Skip to content

Commit

Permalink
Missing repr for Sequence
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanhogg committed Jun 27, 2024
1 parent 4d6cece commit ac3173d
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/flitter/language/tree.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -215,6 +215,9 @@ cdef class Sequence(Expression):
expressions.append(expr._simplify(context))
return sequence_pack(expressions)

def __repr__(self):
return f'Sequence({self.expressions!r})'


cdef class Literal(Expression):
cdef readonly Vector value
Expand Down

0 comments on commit ac3173d

Please sign in to comment.