File "run.py", line 128, in ask_another_trip
calculate_trips(trip_list)
TypeError: calculate_trips() takes 0 positional arguments but 1 was given
but argument is passed because needed to calculate days. So presumably need to re-order and rescope functions, possibly splitting calc and second trip into different functions
File "run.py", line 128, in ask_another_trip calculate_trips(trip_list) TypeError: calculate_trips() takes 0 positional arguments but 1 was given
but argument is passed because needed to calculate days. So presumably need to re-order and rescope functions, possibly splitting calc and second trip into different functions