From 78e772e949c7efd5332cbce0a0dddc044e2ac9c7 Mon Sep 17 00:00:00 2001 From: c-bata Date: Tue, 27 Oct 2020 03:40:22 +0900 Subject: [PATCH] Fix flake8 error --- optuna_dashboard/serializer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/optuna_dashboard/serializer.py b/optuna_dashboard/serializer.py index de733a4b..5002180a 100644 --- a/optuna_dashboard/serializer.py +++ b/optuna_dashboard/serializer.py @@ -6,7 +6,7 @@ from optuna.trial import FrozenTrial try: from typing import TypedDict -except: +except ImportError: from typing_extensions import TypedDict