jonathanjordan21 commited on
Commit
d9130bf
·
verified ·
1 Parent(s): db9e4d7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -26,8 +26,8 @@ def greet_json():
26
 
27
  @app.get("/get_flights")
28
  async def get_flights(
29
- origin: string ="CGK",
30
- destination: string ="DPS",
31
  adult: int = 1,
32
  child: int = 0,
33
  infant: int = 0,
 
26
 
27
  @app.get("/get_flights")
28
  async def get_flights(
29
+ origin: str = "CGK",
30
+ destination: str ="DPS",
31
  adult: int = 1,
32
  child: int = 0,
33
  infant: int = 0,