From 01555bd780c5768d9758ae5a0bec6fb25fa8ce85 Mon Sep 17 00:00:00 2001 From: Khaleel Al-Adhami Date: Wed, 30 Oct 2024 13:45:16 -0700 Subject: [PATCH] unbreak ci lighthouse --- benchmarks/benchmark_lighthouse.py | 3 +-- reflex/components/radix/themes/components/slider.py | 4 ++-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/benchmarks/benchmark_lighthouse.py b/benchmarks/benchmark_lighthouse.py index 25d5eaac4..d428c16e6 100644 --- a/benchmarks/benchmark_lighthouse.py +++ b/benchmarks/benchmark_lighthouse.py @@ -42,8 +42,7 @@ def get_lighthouse_scores(directory_path: str | Path) -> dict: try: for filename in directory_path.iterdir(): if filename.suffix == ".json" and filename.stem != "manifest": - file_path = directory_path / filename - data = json.loads(file_path.read_text()) + data = json.loads(filename.read_text()) # Extract scores and add them to the dictionary with the filename as key scores[data["finalUrl"].replace("http://localhost:3000/", "/")] = { "performance_score": data["categories"]["performance"]["score"], diff --git a/reflex/components/radix/themes/components/slider.py b/reflex/components/radix/themes/components/slider.py index 0d99eda27..bf0e5c454 100644 --- a/reflex/components/radix/themes/components/slider.py +++ b/reflex/components/radix/themes/components/slider.py @@ -16,8 +16,8 @@ from ..base import ( def on_value_event_spec( - value: Var[List[int | float]], -) -> Tuple[Var[List[int | float]]]: + value: Var[List[Union[int, float]]], +) -> Tuple[Var[List[Union[int, float]]]]: """Event handler spec for the value event. Args: