add future annotations

This commit is contained in:
Lendemor 2024-11-20 23:21:06 +01:00
parent 4097f382fa
commit 5ec2c11936

View File

@ -1,5 +1,7 @@
"""Immutable datetime and date vars.""" """Immutable datetime and date vars."""
from __future__ import annotations
from datetime import date, datetime from datetime import date, datetime
from typing import Any, NoReturn, TypeVar, Union, overload from typing import Any, NoReturn, TypeVar, Union, overload