Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove redundant with #2026

Merged
merged 1 commit into from
May 2, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 7 additions & 13 deletions lib/schedules/hours_of_operation.ex
Original file line number Diff line number Diff line change
Expand Up @@ -245,19 +245,13 @@ defmodule Schedules.HoursOfOperation do
special_service_params,
departure_fn
) do
with {:ok, special_service_depature_maps} <-
special_service_departures_parser(
special_service_responses,
headsigns,
:rapid_transit,
special_service_params,
departure_fn
) do
{
:ok,
special_service_depature_maps
}
end
special_service_departures_parser(
special_service_responses,
headsigns,
:rapid_transit,
special_service_params,
departure_fn
)
end

defp special_service_departures(_, _, _, _, _) do
Expand Down
Loading