dbt-selly/dbt-env/lib/python3.8/site-packages/mashumaro/meta/patch.py

14 lines
304 B
Python

from .macros import PY_36
def patch_fromisoformat():
if PY_36:
# noinspection PyPackageRequirements
# noinspection PyUnresolvedReferences
from backports.datetime_fromisoformat import MonkeyPatch
MonkeyPatch.patch_fromisoformat()
__all__ = ["patch_fromisoformat"]