From 143aed2d07ebdb1b9bd9cd7865830719006150e3 Mon Sep 17 00:00:00 2001 From: Wojtek Kosior Date: Mon, 21 Feb 2022 18:59:53 +0100 Subject: enable using with Python 3.7 --- src/hydrilla/builder/build.py | 3 +++ src/hydrilla/util/_util.py | 3 +++ 2 files changed, 6 insertions(+) (limited to 'src/hydrilla') diff --git a/src/hydrilla/builder/build.py b/src/hydrilla/builder/build.py index 2824e9b..5a46259 100644 --- a/src/hydrilla/builder/build.py +++ b/src/hydrilla/builder/build.py @@ -24,6 +24,9 @@ # file's license. Although I request that you do not make use this code # in a proprietary program, I am not going to enforce this in court. +# Enable using with Python 3.7. +from __future__ import annotations + import json import re import zipfile diff --git a/src/hydrilla/util/_util.py b/src/hydrilla/util/_util.py index 364945c..62843f4 100644 --- a/src/hydrilla/util/_util.py +++ b/src/hydrilla/util/_util.py @@ -24,6 +24,9 @@ # file's license. Although I request that you do not make use this code # in a proprietary program, I am not going to enforce this in court. +# Enable using with Python 3.7. +from __future__ import annotations + import re import json import locale -- cgit v1.2.3