Skip to content

Commit

Permalink
Added type hints for the public functions
Browse files Browse the repository at this point in the history
  • Loading branch information
regebro committed Oct 9, 2023
1 parent bfb32da commit 0e7ae88
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions tzlocal/unix.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import re
import sys
import warnings
from datetime import timezone
from datetime import timezone, tzinfo

from tzlocal import utils

Expand Down Expand Up @@ -202,7 +202,7 @@ def _get_localzone(_root="/"):
return tz


def get_localzone_name():
def get_localzone_name() -> str:
"""Get the computers configured local timezone name, if any."""
global _cache_tz_name
if _cache_tz_name is None:
Expand All @@ -211,7 +211,7 @@ def get_localzone_name():
return _cache_tz_name


def get_localzone():
def get_localzone() -> tzinfo:
"""Get the computers configured local timezone, if any."""

global _cache_tz
Expand All @@ -221,7 +221,7 @@ def get_localzone():
return _cache_tz


def reload_localzone():
def reload_localzone() -> None:
"""Reload the cached localzone. You need to call this if the timezone has changed."""
global _cache_tz_name
global _cache_tz
Expand Down
8 changes: 4 additions & 4 deletions tzlocal/win32.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import logging
from datetime import datetime
from datetime import datetime, tzinfo

try:
import _winreg as winreg
Expand Down Expand Up @@ -112,7 +112,7 @@ def _get_localzone_name():
return timezone


def get_localzone_name():
def get_localzone_name() -> str:
"""Get the zoneinfo timezone name that matches the Windows-configured timezone."""
global _cache_tz_name
if _cache_tz_name is None:
Expand All @@ -121,7 +121,7 @@ def get_localzone_name():
return _cache_tz_name


def get_localzone():
def get_localzone() -> tzinfo:
"""Returns the zoneinfo-based tzinfo object that matches the Windows-configured timezone."""

global _cache_tz
Expand All @@ -137,7 +137,7 @@ def get_localzone():
return _cache_tz


def reload_localzone():
def reload_localzone() -> None:
"""Reload the cached localzone. You need to call this if the timezone has changed."""
global _cache_tz
global _cache_tz_name
Expand Down

0 comments on commit 0e7ae88

Please sign in to comment.