Add some missing stubs in datetimerange (#8470)

This commit is contained in:
Kevin Kirsche
2022-08-02 18:08:18 -04:00
committed by GitHub
parent 57179d4080
commit 65dadac46d
2 changed files with 12 additions and 4 deletions

View File

@@ -5,8 +5,13 @@ from typing import ClassVar
from dateutil.relativedelta import relativedelta
__license__: str
__email__: str
from .__version__ import (
__author__ as __author__,
__copyright__ as __copyright__,
__email__ as __email__,
__license__ as __license__,
__version__ as __version__,
)
class DateTimeRange:
NOT_A_TIME_STR: ClassVar[str]

View File

@@ -1,3 +1,6 @@
__maintainer__: str
__email__: str
__author__: str = ...
__copyright__: str
__license__: str
__version__: str
__maintainer__ = __author__
__email__: str