From 90a6f0ee7aa64488d25f0959e5d2491f677c68f8 Mon Sep 17 00:00:00 2001 From: Paul Andrey <paul.andrey@inria.fr> Date: Mon, 6 Feb 2023 16:45:26 +0100 Subject: [PATCH] Add a missing 'type: ignore' comment. --- test/test_main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_main.py b/test/test_main.py index bdfdf76c..f11ee0ef 100644 --- a/test/test_main.py +++ b/test/test_main.py @@ -41,7 +41,7 @@ from declearn.test_utils import run_as_processes # pylint: disable=ungrouped-imports FRAMEWORKS = ["Sksgd", "Tflow", "Torch"] try: - import tensorflow as tf + import tensorflow as tf # type: ignore except ModuleNotFoundError: FRAMEWORKS.remove("Tflow") else: -- GitLab