mirror of
https://github.com/janeczku/calibre-web
synced 2024-11-08 02:49:59 +00:00
13 lines
410 B
Python
13 lines
410 B
Python
|
'''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()
|
||
|
|