diff options
author | Wojtek Kosior <koszko@koszko.org> | 2022-10-11 11:17:56 +0200 |
---|---|---|
committer | Wojtek Kosior <koszko@koszko.org> | 2022-10-11 13:12:15 +0200 |
commit | 634cef218e9979053da3367c79de6d740633c61a (patch) | |
tree | 317ebb413ad98067c142004c0da79f2cbb160457 /src/hydrilla/server | |
parent | 94e140e685baae38e8977fe90a3304bbc041ae66 (diff) | |
download | haketilo-hydrilla-634cef218e9979053da3367c79de6d740633c61a.tar.gz haketilo-hydrilla-634cef218e9979053da3367c79de6d740633c61a.zip |
[builder][server][proxy] remove "from __future__ import annotations"
Diffstat (limited to 'src/hydrilla/server')
-rw-r--r-- | src/hydrilla/server/config.py | 3 | ||||
-rw-r--r-- | src/hydrilla/server/malcontent.py | 3 | ||||
-rw-r--r-- | src/hydrilla/server/serve.py | 3 |
3 files changed, 0 insertions, 9 deletions
diff --git a/src/hydrilla/server/config.py b/src/hydrilla/server/config.py index c0b1c5c..42aabab 100644 --- a/src/hydrilla/server/config.py +++ b/src/hydrilla/server/config.py @@ -25,9 +25,6 @@ # 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 typing as t diff --git a/src/hydrilla/server/malcontent.py b/src/hydrilla/server/malcontent.py index 8e4eaa7..9bdf6dc 100644 --- a/src/hydrilla/server/malcontent.py +++ b/src/hydrilla/server/malcontent.py @@ -25,9 +25,6 @@ # 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 logging import dataclasses as dc import typing as t diff --git a/src/hydrilla/server/serve.py b/src/hydrilla/server/serve.py index 00682aa..68dde7a 100644 --- a/src/hydrilla/server/serve.py +++ b/src/hydrilla/server/serve.py @@ -25,9 +25,6 @@ # 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 os import json |