From 91d80bd200e1d344d706ec8e706e1b26fafec857 Mon Sep 17 00:00:00 2001 From: Felix Scherz Date: Mon, 7 Oct 2024 22:15:47 +0200 Subject: [PATCH] chore: run formatter --- kedro-datasets/kedro_datasets/plotly/html_dataset.py | 4 +--- kedro-datasets/kedro_datasets/plotly/json_dataset.py | 4 +--- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/kedro-datasets/kedro_datasets/plotly/html_dataset.py b/kedro-datasets/kedro_datasets/plotly/html_dataset.py index e2aa2c8e8..83585d57b 100644 --- a/kedro-datasets/kedro_datasets/plotly/html_dataset.py +++ b/kedro-datasets/kedro_datasets/plotly/html_dataset.py @@ -18,9 +18,7 @@ from plotly import graph_objects as go -class HTMLDataset( - AbstractVersionedDataset[go.Figure, go.Figure | go.FigureWidget] -): +class HTMLDataset(AbstractVersionedDataset[go.Figure, go.Figure | go.FigureWidget]): """``HTMLDataset`` saves a plotly figure to an HTML file using an underlying filesystem (e.g.: local, S3, GCS). diff --git a/kedro-datasets/kedro_datasets/plotly/json_dataset.py b/kedro-datasets/kedro_datasets/plotly/json_dataset.py index 7f5174958..2ce626a8b 100644 --- a/kedro-datasets/kedro_datasets/plotly/json_dataset.py +++ b/kedro-datasets/kedro_datasets/plotly/json_dataset.py @@ -21,9 +21,7 @@ from kedro_datasets._typing import PlotlyPreview -class JSONDataset( - AbstractVersionedDataset[go.Figure, go.Figure | go.FigureWidget] -): +class JSONDataset(AbstractVersionedDataset[go.Figure, go.Figure | go.FigureWidget]): """``JSONDataset`` loads/saves a plotly figure from/to a JSON file using an underlying filesystem (e.g.: local, S3, GCS).