get_items
is completely decoupled from get_x
and get_y
: it is there to return all your items from the source. You can pass get_x
and get_y
(or a list of getters) to explain how to get your x and y from the result of get_items
and they both default to noop (which is why when get_items
return filenames, we don’t pass a get_x
).
3 Likes