sferaud commited on
Commit
316ab9b
·
verified ·
1 Parent(s): 9621987

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -47,7 +47,8 @@ def countries_with_same_current_offset(timezone : str, return_country_names : bo
47
  # No need to check other timezones for this country
48
  break
49
 
50
- return sorted(matching_countries)
 
51
 
52
 
53
 
 
47
  # No need to check other timezones for this country
48
  break
49
 
50
+ same_offset_countries=sorted(matching_countries)
51
+ return f"Countries sharing the same current offset as {timezone_name}: {same_offset_countries}"
52
 
53
 
54