Vijayashankar commited on
Commit
f797ba7
·
verified ·
1 Parent(s): 721e999

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -17,8 +17,7 @@ def calculate_walking_time_paris(start, end) -> int:
17
  """
18
  # This is a placeholder function. In a real scenario, this function would call a tool to get the actual walking time.
19
  # For now, we'll use predefined walking times for simplicity.
20
- walking_times =
21
- {
22
  ("Eiffel Tower", "Champ de Mars"): 9,
23
  ("Champ de Mars", "Musée de l'Orangerie"): 11,
24
  ("Musée de l'Orangerie", "Pont Alexandre III"): 8,
 
17
  """
18
  # This is a placeholder function. In a real scenario, this function would call a tool to get the actual walking time.
19
  # For now, we'll use predefined walking times for simplicity.
20
+ walking_times = {
 
21
  ("Eiffel Tower", "Champ de Mars"): 9,
22
  ("Champ de Mars", "Musée de l'Orangerie"): 11,
23
  ("Musée de l'Orangerie", "Pont Alexandre III"): 8,