From 4fae4185552cc62fa1acaf607e27f1c58c9fd668 Mon Sep 17 00:00:00 2001 From: KronosDev-Pro Date: Wed, 13 Nov 2024 01:29:14 +0000 Subject: [PATCH] remove unused var & import --- reflex/compiler/compiler.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/reflex/compiler/compiler.py b/reflex/compiler/compiler.py index 6765e2f16..f684ac98b 100644 --- a/reflex/compiler/compiler.py +++ b/reflex/compiler/compiler.py @@ -4,8 +4,6 @@ from __future__ import annotations from datetime import datetime from pathlib import Path -from re import IGNORECASE as RE_IGNORECASE -from re import compile as re_compile from typing import TYPE_CHECKING, Dict, Iterable, Optional, Tuple, Type, Union from reflex import constants @@ -27,8 +25,6 @@ from reflex.utils.imports import ImportVar from reflex.utils.prerequisites import get_web_dir from reflex.vars.base import LiteralVar, Var -RE_SASS_SCSS_EXT = re_compile(r"\.s(c|a)ss", flags=RE_IGNORECASE) - def _compile_document_root(root: Component) -> str: """Compile the document root.