From a5532453bef7077519385570cf84a307f265c195 Mon Sep 17 00:00:00 2001 From: Stephen Rosen Date: Fri, 31 May 2024 10:59:31 -0500 Subject: [PATCH] Minor tweak to fix py3.8 CI --- src/webargs/tornadoparser.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/webargs/tornadoparser.py b/src/webargs/tornadoparser.py index 2b4d8800..35fa0c13 100644 --- a/src/webargs/tornadoparser.py +++ b/src/webargs/tornadoparser.py @@ -14,6 +14,8 @@ def get(self, args): self.write(response) """ +from __future__ import annotations + import json import typing