From 8e91f98da5470cb68d53f1f0dcb34a878e9e89d1 Mon Sep 17 00:00:00 2001 From: Justin Newberry Date: Sun, 13 Aug 2023 22:55:59 -0700 Subject: [PATCH] Replay UI: Fix zip issue (#29384) Update ui_helpers.py resolves https://github.com/commaai/openpilot/issues/29383 old-commit-hash: 783bb1f878a4b8f2d2902c053a9b7cc9e1ea1b8e --- tools/replay/lib/ui_helpers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/replay/lib/ui_helpers.py b/tools/replay/lib/ui_helpers.py index ef59d225ee..4ab8efab61 100644 --- a/tools/replay/lib/ui_helpers.py +++ b/tools/replay/lib/ui_helpers.py @@ -161,7 +161,7 @@ def init_plots(arr, name_to_arr_idx, plot_xlims, plot_ylims, plot_names, plot_co idxs.append(name_to_arr_idx[item]) plot_select.append(i) axs[i].set_title(", ".join(f"{nm} ({cl})" - for (nm, cl) in zip(pl_list, plot_colors[i], strict=True)), fontsize=10) + for (nm, cl) in zip(pl_list, plot_colors[i], strict=False)), fontsize=10) axs[i].tick_params(axis="x", colors="white") axs[i].tick_params(axis="y", colors="white") axs[i].title.set_color("white")