mirror of
https://github.com/zulip/zulip.git
synced 2025-11-04 14:03:30 +00:00
9 lines
137 B
Python
9 lines
137 B
Python
|
|
from typing import Text, List
|
|
|
|
import pytz
|
|
|
|
def get_all_timezones():
|
|
# type: () -> List[Text]
|
|
return sorted(pytz.all_timezones)
|