From 2d56441a28457bba74a714a414c2bf85f929bd6d Mon Sep 17 00:00:00 2001 From: benedikt-bartscher <31854409+benedikt-bartscher@users.noreply.github.com> Date: Wed, 28 Feb 2024 23:51:50 +0100 Subject: [PATCH] fix black+ruff (#2750) --- tests/components/graphing/test_plotly.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tests/components/graphing/test_plotly.py b/tests/components/graphing/test_plotly.py index 4b04354fc..0e17789b5 100644 --- a/tests/components/graphing/test_plotly.py +++ b/tests/components/graphing/test_plotly.py @@ -1,8 +1,8 @@ import numpy as np import plotly.graph_objects as go -import reflex as rx import pytest +import reflex as rx from reflex.utils.serializers import serialize, serialize_figure @@ -40,6 +40,5 @@ def test_plotly_config_option(plotly_fig: go.Figure): Args: plotly_fig: The figure to display. """ - # This tests just confirm that the component can be created with a config option. - _ = rx.plotly(data=plotly_fig, config={"showLink": True}) \ No newline at end of file + _ = rx.plotly(data=plotly_fig, config={"showLink": True})