Add get_localzone_name to tzlocal (#6912)

This commit is contained in:
DatGuy1
2022-01-14 01:35:24 +02:00
committed by GitHub
parent df0fe16456
commit 7920f502e2
2 changed files with 2 additions and 1 deletions

View File

@@ -1,2 +1,2 @@
version = "3.0"
version = "4.1"
requires = ["types-pytz"]

View File

@@ -2,3 +2,4 @@ from pytz import BaseTzInfo
def reload_localzone() -> None: ...
def get_localzone() -> BaseTzInfo: ...
def get_localzone_name() -> str: ...