Skip to content

Commit

Permalink
spacings
Browse files Browse the repository at this point in the history
  • Loading branch information
fredericsimard committed Sep 6, 2024
1 parent 74bfc57 commit 098edfe
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scripts/process_csv_in_github_action.swift
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,6 @@ if argNames.count == 5 {
var realtimeFinalURLtoUse : String = downloadURL ; if downloadURL.count < 4 { realtimeFinalURLtoUse = defaults.emptyValue }

if isInDebugMode { print("\t\tscheduleFinalURLtoUse || realtimeFinalURLtoUse : \(scheduleFinalURLtoUse) (\(scheduleFinalURLtoUse.count)) \(realtimeFinalURLtoUse) (\(realtimeFinalURLtoUse.count))") }

if isInDebugMode { print("\t\tEvaluating issue: \(issue)") }

if issue.contains(issueType.isAddNewFeed) || issue.contains(issueType.isAddNewSource) { // add new feed
Expand Down Expand Up @@ -231,6 +230,7 @@ if argNames.count == 5 {
}

} else if issue.contains(issueType.isUpdateExistingFeed) || issue.contains(issueType.isFeedUpdate) { // update existing feed

if isInDebugMode { print("\t\t\tIS UPDATE: issue contains datatype: \(datatype)") }

if datatype.contains(dataType.schedule) { // update_gtfs_schedule_source
Expand Down Expand Up @@ -277,6 +277,7 @@ if argNames.count == 5 {
}

} else if issue.contains(issueType.isToRemoveFeed) { // remove feed

if isInDebugMode { print("\t\t\tREMOVE FEED: issue contains datatype: \(datatype)") }

if datatype.contains(dataType.schedule) { // update_gtfs_schedule_source
Expand Down

0 comments on commit 098edfe

Please sign in to comment.