Skip to content

Commit 6adc417

Browse files
committed
Fix the format for events' location
1 parent 671b453 commit 6adc417

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/events-automation/generate_events_meetup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ def format_location(address) -> str:
265265
return "No location"
266266

267267
# All components for a location
268-
components = ['road', 'city', 'state', 'postcode', 'country', 'country_code', 'suburb', 'neighborhood', 'county']
268+
components = ['road', 'city', 'state', 'postcode', 'country']
269269

270270
# Get available components, otherwise replace missing component with an empty string
271271
location = [address.get(component, "") for component in components]

0 commit comments

Comments
 (0)