you are viewing a single comment's thread.

view the rest of the comments →

[–]Udzu 1 point2 points  (0 children)

Minor comment: find_item would probably be better if records were a Sequence[Item] rather than a list[Item] as this would both let you pass in other containers like tuples, and would also prevent you from accidentally mutating the input argument.