mirror of
https://github.com/zulip/zulip.git
synced 2025-11-06 06:53:25 +00:00
8 lines
122 B
Python
8 lines
122 B
Python
|
|
from typing import Text, List
|
|
|
|
import pytz
|
|
|
|
def get_all_timezones() -> List[Text]:
|
|
return sorted(pytz.all_timezones)
|