mirror of
https://github.com/zulip/zulip.git
synced 2025-11-05 06:23:38 +00:00
10 lines
176 B
Python
10 lines
176 B
Python
from __future__ import absolute_import
|
|
|
|
from typing import Text, List
|
|
|
|
import pytz
|
|
|
|
def get_all_timezones():
|
|
# type: () -> List[Text]
|
|
return sorted(pytz.all_timezones)
|