From d8192679e5e982681c8dc4109eab69c98757e828 Mon Sep 17 00:00:00 2001 From: Ferdinand Thiessen Date: Mon, 6 Dec 2021 15:30:39 +0100 Subject: [PATCH] chore(cleanup): Drop stuff for unsupported python versions --- flaschengeist/utils/datetime.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/flaschengeist/utils/datetime.py b/flaschengeist/utils/datetime.py index 9de34ad..87ec300 100644 --- a/flaschengeist/utils/datetime.py +++ b/flaschengeist/utils/datetime.py @@ -1,10 +1,4 @@ import datetime -import sys - -if sys.version_info < (3, 7): - from backports.datetime_fromisoformat import MonkeyPatch - - MonkeyPatch.patch_fromisoformat() def from_iso_format(date_str):