Skip to content

Commit

Permalink
style(get_passenger_reservations): add eslint comment
Browse files Browse the repository at this point in the history
  • Loading branch information
Franco Méndez committed Nov 3, 2019
1 parent c61236f commit 715ad70
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions get_passenger_reservations.js
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,7 @@ exports.handler = async (event) => {

for (let i = 0; i < reservations.length; i += 1) {
const singleReservationId = reservations[i].reservation_id;
// eslint-disable-next-line no-await-in-loop
const singleReservation = await singleReservationResponse(singleReservationId);
response.push(singleReservation);
}
Expand Down

0 comments on commit 715ad70

Please sign in to comment.