From 6ece5f27357a0a3eccdacc2426079cc5c1bc96cb Mon Sep 17 00:00:00 2001 From: Marty Oehme Date: Mon, 29 Jul 2024 09:48:54 +0200 Subject: [PATCH] chore(script): Ignore unused imports in manuscript Mainly for standard imports on top and for imports which are not used in code cells but in-text through little in-text code cells (such as strength_for function). --- manuscript/article.qmd | 2 ++ 1 file changed, 2 insertions(+) diff --git a/manuscript/article.qmd b/manuscript/article.qmd index d9b30ef..7ecfb0e 100644 --- a/manuscript/article.qmd +++ b/manuscript/article.qmd @@ -50,6 +50,8 @@ from matplotlib import pyplot as plt from tabulate import tabulate import seaborn as sns sns.set_style("whitegrid") + +# pyright: reportUnusedImport=false ``` ```{python}