Skip to content
This repository has been archived by the owner on Nov 23, 2024. It is now read-only.

Commit

Permalink
docs: suppress warnings in notebooks (#27)
Browse files Browse the repository at this point in the history
### Summary of Changes

The generated documentation sometimes included warnings:


![image](https://user-images.githubusercontent.com/2501322/225752956-cb7d7863-7d3f-44e3-81a1-af17f5a16841.png)

Warnings now get suppressed, which should remove these messages.
  • Loading branch information
lars-reimann authored Mar 16, 2023
1 parent 833e9a7 commit 763f739
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions docs/examples/house_sales.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@
"execution_count": null,
"outputs": [],
"source": [
"import warnings\n",
"warnings.filterwarnings(\"ignore\")\n",
"\n",
"from safeds_examples.tabular import describe_house_sales_columns\n",
"from display_column_description import display_column_descriptions\n",
"\n",
Expand Down
3 changes: 3 additions & 0 deletions docs/examples/titanic.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@
"execution_count": null,
"outputs": [],
"source": [
"import warnings\n",
"warnings.filterwarnings(\"ignore\")\n",
"\n",
"from safeds_examples.tabular import describe_titanic_columns\n",
"from display_column_description import display_column_descriptions\n",
"\n",
Expand Down

0 comments on commit 763f739

Please sign in to comment.