Skip to content

Commit

Permalink
doc string fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Prateek1009 committed Jan 15, 2023
1 parent a36f114 commit f6ec287
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Module contains transfer patterns implementation.
"""

from TRANSFER_PATTERNS.transferpattern_func import *
from Algorithms.TRANSFER_PATTERNS.transferpattern_func import *


def std_tp(SOURCE: int, DESTINATION: int, D_TIME, footpath_dict: dict, NETWORK_NAME: str, routesindx_by_stop_dict, stoptimes_dict: dict, hub_count: int = 0,
Expand All @@ -16,8 +16,8 @@ def std_tp(SOURCE: int, DESTINATION: int, D_TIME, footpath_dict: dict, NETWORK_N
DESTINATION (int): stop id of destination stop.
D_TIME (pandas.datetime): departure time.
footpath_dict (dict): preprocessed dict. Format {from_stop_id: [(to_stop_id, footpath_time)]}.
NETWORK_NAME (str): GTFS path
routesindx_by_stop_dict:
NETWORK_NAME (str): name of the network
routesindx_by_stop_dict (dict): Keys: stop id, value: [(route_id, stop index), (route_id, stop index)]
stops_dict (dict): preprocessed dict. Format {route_id: [ids of stops in the route]}.
hub_count (int): Number of hub stops
hubstops (set): set containing id's of stop that are hubs
Expand Down

0 comments on commit f6ec287

Please sign in to comment.