Closed henriquegemignani closed 4 months ago
In our test files, a common pattern is this:
all_dread_bsmat = [name for name in dread_data.all_name_to_asset_id().keys() if name.endswith(".bsmat")]
It'd be nice to add a method to dread_data and samus_returns_data in order to change that call into
dread_data
samus_returns_data
all_dread_bsmat = dread_data.all_files_ending_with(".bsmat")
In our test files, a common pattern is this:
It'd be nice to add a method to
dread_data
andsamus_returns_data
in order to change that call into