From 2d6fa58c1af428faeb4ac92884f738a773540eea Mon Sep 17 00:00:00 2001 From: Tomas Pereira de Vasconcelos Date: Thu, 11 Jan 2024 00:52:10 +0000 Subject: [PATCH] fix type ignore comments --- docs/conf.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 142610c6..3c4ca7d0 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -15,8 +15,8 @@ # $ python -m sphinx (...) # which automatically adds ./ to the Python path (sys.path) # So, we'll fallback to explicitly importing from the extras directory - from extras._compile_plotly_charts import ( - compile_plotly_charts, # type: ignore[import-not-found,no-redef] + from extras._compile_plotly_charts import ( # type: ignore[import-not-found] + compile_plotly_charts, # type: ignore[no-redef] ) # Configuration file for the Sphinx documentation builder.