From d5c7cedf31ebd02322a3e19bdd87858bb81a49cb Mon Sep 17 00:00:00 2001 From: Nikhil Rao Date: Fri, 27 Oct 2023 16:49:29 -0700 Subject: [PATCH] Support 3.9 on templates (#2065) --- reflex/.templates/apps/base/code/templates/template.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/reflex/.templates/apps/base/code/templates/template.py b/reflex/.templates/apps/base/code/templates/template.py index da62f2ad0..03111d6a6 100644 --- a/reflex/.templates/apps/base/code/templates/template.py +++ b/reflex/.templates/apps/base/code/templates/template.py @@ -1,5 +1,7 @@ """Common templates used between pages in the app.""" +from __future__ import annotations + from code import styles from code.components.sidebar import sidebar from typing import Callable