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).
This commit is contained in:
Marty Oehme 2024-07-29 09:48:54 +02:00
parent 6089b64665
commit 6ece5f2735
Signed by: Marty
GPG key ID: EDBF2ED917B2EF6A

View file

@ -50,6 +50,8 @@ from matplotlib import pyplot as plt
from tabulate import tabulate from tabulate import tabulate
import seaborn as sns import seaborn as sns
sns.set_style("whitegrid") sns.set_style("whitegrid")
# pyright: reportUnusedImport=false
``` ```
```{python} ```{python}