From ae8810f31b5b7d76ad1e6191e2c4cbc81f708c07 Mon Sep 17 00:00:00 2001 From: c-bata Date: Fri, 2 Jun 2023 19:21:51 +0900 Subject: [PATCH] Fix isort errors --- python_tests/test_file_system_artifact.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python_tests/test_file_system_artifact.py b/python_tests/test_file_system_artifact.py index 80cd7624..ceaaf125 100644 --- a/python_tests/test_file_system_artifact.py +++ b/python_tests/test_file_system_artifact.py @@ -2,8 +2,8 @@ import io import tempfile from unittest import TestCase -from optuna_dashboard.artifact.file_system import FileSystemBackend from optuna_dashboard.artifact.exceptions import ArtifactNotFound +from optuna_dashboard.artifact.file_system import FileSystemBackend class FileSystemBackendTestCase(TestCase):