mirror of https://github.com/zulip/zulip.git
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)
|