1
0
mirror of https://github.com/janeczku/calibre-web synced 2024-11-08 02:49:59 +00:00
calibre-web/vendor/pytz/zoneinfo/Atlantic/South_Georgia.py

13 lines
410 B
Python
Raw Normal View History

'''tzinfo timezone information for Atlantic/South_Georgia.'''
from pytz.tzinfo import StaticTzInfo
from pytz.tzinfo import memorized_timedelta as timedelta
class South_Georgia(StaticTzInfo):
'''Atlantic/South_Georgia timezone definition. See datetime.tzinfo for details'''
zone = 'Atlantic/South_Georgia'
_utcoffset = timedelta(seconds=-7200)
_tzname = 'GST'
South_Georgia = South_Georgia()