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

docs: suppress warnings in notebooks #27

Merged
merged 2 commits into from
Mar 16, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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