From e2d7fa0a4c009a4c5e8b7af433498d013c182884 Mon Sep 17 00:00:00 2001 From: Khaleel Al-Adhami Date: Tue, 15 Oct 2024 11:00:05 -0700 Subject: [PATCH] change place of type ignore --- tests/units/components/core/test_colors.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/units/components/core/test_colors.py b/tests/units/components/core/test_colors.py index e5c6d250b..74fbeb20f 100644 --- a/tests/units/components/core/test_colors.py +++ b/tests/units/components/core/test_colors.py @@ -37,8 +37,8 @@ def create_color_var(color): ), ( create_color_var( - rx.color(ColorState.color, ColorState.shade, ColorState.alpha) - ), # type: ignore + rx.color(ColorState.color, ColorState.shade, ColorState.alpha) # type: ignore + ), f'("var(--"+{str(color_state_name)}.color+"-"+({str(color_state_name)}.alpha ? "a" : "")+(((__to_string) => __to_string.toString())({str(color_state_name)}.shade))+")")', Color, ),