Skip to content

Commit

Permalink
fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
toravest committed May 27, 2025
1 parent 694f197 commit 0c0f683
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
2 changes: 1 addition & 1 deletion notebooks/notebook_compare_one_day_data.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -4208,7 +4208,7 @@
],
"metadata": {
"kernelspec": {
"display_name": "venv",
"display_name": "Python 3",
"language": "python",
"name": "python3"
},
Expand Down
8 changes: 4 additions & 4 deletions notebooks/notebook_compare_statistic_data.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -1324,7 +1324,7 @@
},
{
"cell_type": "code",
"execution_count": 13,
"execution_count": null,
"id": "83aed603",
"metadata": {},
"outputs": [
Expand Down Expand Up @@ -1388,8 +1388,8 @@
"ax2 = ax1.twinx()\n",
"\n",
"# Fill between the precipitation, for an easier and more readable vizualisation\n",
"ax2.fill_between(x_axis, precipitation_city_1, color='#80C0C0', alpha=0.5, label=f'{city_1} Total', edgecolor = '#008080')\n",
"ax2.fill_between(x_axis, precipitation_city_2, color='#FFD280', alpha=0.5, label=f'{city_2} Total', edgecolor = '#FFA500')\n",
"ax2.fill_between(x_axis, precipitation_city_1, color='#80C0C0', alpha=0.5, label=f'Precipitiation {city_1}', edgecolor = '#008080')\n",
"ax2.fill_between(x_axis, precipitation_city_2, color='#FFD280', alpha=0.5, label=f'Precipitiation {city_2}', edgecolor = '#FFA500')\n",
"\n",
"ax2.set_ylabel(\"Precipitation (mm)\", color='tab:blue')\n",
"ax2.tick_params(axis='y', labelcolor='tab:blue')\n",
Expand Down Expand Up @@ -1521,7 +1521,7 @@
],
"metadata": {
"kernelspec": {
"display_name": "venv",
"display_name": "Python 3",
"language": "python",
"name": "python3"
},
Expand Down
4 changes: 2 additions & 2 deletions notebooks/notebook_one_week_data.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"**Kommentar**: *Lagrer dataen for Jørpeland den 30.september 2024 i mappen: `data/json/output_one_week/data_kirkenes.json`. Den finnes altså i json mappen i data mappen, og er lagret i denne notebookens mappe `output_notebook_one_week` med filnavnet `data_kirkenes.json`.*"
"**Kommentar**: *Lagrer dataen for Kirkenes for perioden 3. januar til 10.januar 2025 i mappen: `data/json/output_one_week/data_kirkenes.json`. Den finnes altså i json mappen i data mappen, og er lagret i denne notebookens mappe `output_notebook_one_week` med filnavnet `data_kirkenes.json`.*"
]
},
{
Expand Down Expand Up @@ -1520,7 +1520,7 @@
],
"metadata": {
"kernelspec": {
"display_name": "venv",
"display_name": "Python 3",
"language": "python",
"name": "python3"
},
Expand Down
4 changes: 4 additions & 0 deletions src/my_package/test_module.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
def hello():
'''
This is just the first test, to check if we managed to import the function to a notebook,
therefor the function only returns "Hello World!"
'''
return ("Hello World!")

0 comments on commit 0c0f683

Please sign in to comment.