Skip to content

Commit c7c1f0f

Browse files
committed
add comments
1 parent a586cc7 commit c7c1f0f

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

FlightDealsStart/flight_data.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from FlightDealsStart.data_manager import DataManager
22

33
class FlightData:
4-
#This class is responsible for structuring the flight data.
4+
# This class is responsible for structuring the flight data.
55

66
def __init__(self, api_key: str):
77
self.__flights = DataManager(api_key).get_flights_from_google_sheet()

FlightDealsStart/flight_search.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
import requests
22

33
class FlightSearch:
4-
#This class is responsible for talking to the Flight Search API.
4+
# This class is responsible for talking to the Flight Search API.
5+
# https://tequila.kiwi.com/
6+
# https://api.tequila.kiwi.com/v2/search?
57

68
def __init__(self):
79
pass

0 commit comments

Comments
 (0)