Skip to content

Commit

Permalink
pre-commit run --all-files
Browse files Browse the repository at this point in the history
  • Loading branch information
KasiaKoz committed Nov 8, 2024
1 parent 4f36c55 commit e7de2fc
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 3 deletions.
1 change: 1 addition & 0 deletions examples/2_2_reading_data_osm.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,7 @@
"outputs": [],
"source": [
"import importlib_resources\n",
"\n",
"from genet import read_osm"
]
},
Expand Down
1 change: 1 addition & 0 deletions examples/4_2_using_network_road_pricing.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@
"from pathlib import Path\n",
"\n",
"import pandas as pd\n",
"\n",
"from genet import read_matsim\n",
"\n",
"path_to_matsim_network = \"example_data/pt2matsim_network\"\n",
Expand Down
1 change: 1 addition & 0 deletions examples/5_3_modifying_network_simplification.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@
],
"source": [
"import importlib_resources\n",
"\n",
"from genet import read_osm\n",
"\n",
"n = read_osm(\n",
Expand Down
1 change: 1 addition & 0 deletions examples/5_4_modifying_network_addition.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@
],
"source": [
"import importlib_resources\n",
"\n",
"from genet import read_osm\n",
"\n",
"_n_tiny = read_osm(\n",
Expand Down
7 changes: 4 additions & 3 deletions examples/6_2_validating_network_google_directions_api.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,13 @@
"import os\n",
"import random\n",
"\n",
"import genet\n",
"import matplotlib.pyplot as plt\n",
"from shapely.geometry import LineString\n",
"\n",
"import genet\n",
"from genet import google_directions, read_matsim\n",
"from genet.output.spatial import generate_geodataframes\n",
"from genet.utils.io import save_geodataframe\n",
"from shapely.geometry import LineString"
"from genet.utils.io import save_geodataframe"
]
},
{
Expand Down

0 comments on commit e7de2fc

Please sign in to comment.