Skip to content

Commit

Permalink
Fix bug in create_benchmark_backlog where backlog was not created cor…
Browse files Browse the repository at this point in the history
…rectly.
  • Loading branch information
Philipp Ross authored and Philipp Ross committed Oct 12, 2023
1 parent 6fce349 commit 4e0bc02
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ConfigManager.py
Original file line number Diff line number Diff line change
Expand Up @@ -256,13 +256,13 @@ def create_benchmark_backlog(module: ConfigModule) -> list:
}
})
else:
return [{
items.append({
"name": module["name"],
"instance": module["instance"],
"config": single_config,
"submodule": {
}
}]
})

return items

Expand Down

0 comments on commit 4e0bc02

Please sign in to comment.