From 41599207c8715f72432f3f1c1dc844d94c629310 Mon Sep 17 00:00:00 2001 From: Nikhil Rao Date: Thu, 31 Aug 2023 15:40:26 -0700 Subject: [PATCH] Pyi update --- reflex/vars.pyi | 3 +++ 1 file changed, 3 insertions(+) diff --git a/reflex/vars.pyi b/reflex/vars.pyi index 66e4b34ea7..7bb9810cd7 100644 --- a/reflex/vars.pyi +++ b/reflex/vars.pyi @@ -160,4 +160,7 @@ class ImportVar(Base): def name(self) -> str: ... def __hash__(self) -> int: ... +class NoRenderImportVar(ImportVar): + """A import that doesn't need to be rendered.""" + def get_local_storage(key: Optional[Union[Var, str]] = ...) -> BaseVar: ...