From cd254626e396ebac56a165f9093f45e5bb8910a0 Mon Sep 17 00:00:00 2001 From: Kuan Butts Date: Thu, 20 Apr 2017 15:36:52 -0700 Subject: [PATCH] readd drop_bool = False --- urbanaccess/gtfs/network.py | 1 + 1 file changed, 1 insertion(+) diff --git a/urbanaccess/gtfs/network.py b/urbanaccess/gtfs/network.py index 21339ed..17e6bf2 100644 --- a/urbanaccess/gtfs/network.py +++ b/urbanaccess/gtfs/network.py @@ -292,6 +292,7 @@ def interpolatestoptimes(stop_times_df, calendar_selected_trips_df, day): # Need to check if existing index in column names and drop if so (else # a ValueError where Pandas can't insert b/c col already exists will occur) + drop_bool = False if _check_if_index_name_in_cols(df_for_interpolation): # move the current index to own col named 'index' col_name_to_copy = df_for_interpolation.index.name