mirror of
https://github.com/JonathanHerrewijnen/calibre-web.git
synced 2024-11-11 05:33:57 +00:00
13 lines
324 B
Python
13 lines
324 B
Python
|
'''tzinfo timezone information for EST.'''
|
||
|
from pytz.tzinfo import StaticTzInfo
|
||
|
from pytz.tzinfo import memorized_timedelta as timedelta
|
||
|
|
||
|
class EST(StaticTzInfo):
|
||
|
'''EST timezone definition. See datetime.tzinfo for details'''
|
||
|
zone = 'EST'
|
||
|
_utcoffset = timedelta(seconds=-18000)
|
||
|
_tzname = 'EST'
|
||
|
|
||
|
EST = EST()
|
||
|
|