Skip to content

Commit

Permalink
fix: generation of cached files
Browse files Browse the repository at this point in the history
  • Loading branch information
pierreaubert committed Jul 4, 2023
1 parent d298747 commit 0a6609a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions generate_graphs.py
Original file line number Diff line number Diff line change
Expand Up @@ -282,8 +282,8 @@ def compute(speakerlist, filters, ray_ids: dict, level: int):
logger.debug(
"Getting eq done for %s / %s / %s", speaker, m_version_eq, m_version
)
computed_eq = ray.get(current_id)
if computed_eq is not None:
_, computed_eq = ray.get(current_id)
if computed_eq is not None and len(computed_eq) > 0:
data_frame[speaker_key][m_origin][m_version_eq] = computed_eq
logger.debug(
"Getting preamp eq done for %s / %s / %s",
Expand Down

0 comments on commit 0a6609a

Please sign in to comment.