From 226bd53953475422cbd9d5f09019f619768f09f3 Mon Sep 17 00:00:00 2001 From: Contramundum Date: Thu, 7 Sep 2023 17:37:56 +0900 Subject: [PATCH] Fix linter --- optuna_dashboard/preferential/_system_attrs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/optuna_dashboard/preferential/_system_attrs.py b/optuna_dashboard/preferential/_system_attrs.py index c4454e7e..ab469a74 100644 --- a/optuna_dashboard/preferential/_system_attrs.py +++ b/optuna_dashboard/preferential/_system_attrs.py @@ -69,7 +69,7 @@ def get_skipped_trial_ids(study_system_attrs: dict[str, Any]) -> list[int]: try: trial_id = int(k[len(_SYSTEM_ATTR_PREFIX_SKIP_TRIAL) :]) skipped_trial_ids.append(trial_id) - except ValueError as e: + except ValueError: continue return skipped_trial_ids