mirror of
https://github.com/SickGear/SickGear.git
synced 2024-11-15 17:35:04 +00:00
9 lines
230 B
Python
9 lines
230 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
try:
|
||
|
from ._version import version as __version__
|
||
|
except ImportError:
|
||
|
__version__ = 'unknown'
|
||
|
|
||
|
__all__ = ['easter', 'parser', 'relativedelta', 'rrule', 'tz',
|
||
|
'utils', 'zoneinfo']
|