Skip to content

Commit

Permalink
Bug fix
Browse files Browse the repository at this point in the history
Signed-off-by: Constantin M Adam <cmadam@us.ibm.com>
  • Loading branch information
cmadam committed Oct 14, 2024
1 parent 5e4022c commit c14bdaa
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ def get_folders(self, data_access: DataAccess) -> list[str]:
:param data_access - data access object
:return: list of folder paths
"""
bands = self.params["num_bands"]
segments = self.params["num_segments"]
bands = self.params[num_bands_key]
segments = self.params[num_segments_key]
folders = [os.path.join(f"band={b}", f"segment={s}") for b in range(bands) for s in range(segments)]
return folders

Expand Down

0 comments on commit c14bdaa

Please sign in to comment.