From 2f488e9c372813ac2a6cc24328654291ec4f62e8 Mon Sep 17 00:00:00 2001 From: Lendemor Date: Wed, 18 Dec 2024 17:15:54 +0100 Subject: [PATCH] add __future__ --- reflex/compiler/templates.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/reflex/compiler/templates.py b/reflex/compiler/templates.py index 5c7badfa3..d92e14910 100644 --- a/reflex/compiler/templates.py +++ b/reflex/compiler/templates.py @@ -1,5 +1,7 @@ """Templates to use in the reflex compiler.""" +from __future__ import annotations + from jinja2 import Environment, FileSystemLoader, Template from reflex import constants