Closed a-gardner1 closed 1 year ago
I printed out the full values of rename_map
, b.files
and b_in_diff.files
. While it is true that b_in_diff.files != [rename_map[f] for f in b.files]
, it is also true that set(b_in_diff.files) == set([rename_map[f] for f in b.files])
, in the instance I checked.
Did you mean to do set comparison here? If not, you'd be expecting rename_map to be an identity transformation.