From c437733b1134426464c36f93ecf938663e9fd4bb Mon Sep 17 00:00:00 2001 From: Lachlan Perrier Date: Wed, 14 Aug 2024 13:45:05 -0400 Subject: [PATCH] fixed typo --- lasso/emme.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lasso/emme.py b/lasso/emme.py index 7a00505..c49f04f 100644 --- a/lasso/emme.py +++ b/lasso/emme.py @@ -272,7 +272,7 @@ def extract_bus_shapes(transit_network: StandardTransit, route_type_bus_id:int = def tag_if_link_contains_bus(links_df: gpd.GeoDataFrame, gtfs_shape_bus_routes: gpd.GeoDataFrame): links_df = links_df.copy() - gtfs_shape_bus_routes = gtfs_shape_bus_routes,copy() + gtfs_shape_bus_routes = gtfs_shape_bus_routes.copy() # links are defined as pairs of nodes, so get next node (this assumes order) gtfs_shape_bus_routes["next_node_id"] = gtfs_shape_bus_routes["shape_model_node_id"].shift(1)