Skip to content

Commit

Permalink
fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
lachlan-git committed Aug 14, 2024
1 parent 840fa7c commit c437733
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lasso/emme.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit c437733

Please sign in to comment.