Skip to content

Commit

Permalink
chore: run formatter
Browse files Browse the repository at this point in the history
  • Loading branch information
felixscherz committed Oct 7, 2024
1 parent a3ab836 commit 91d80bd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
4 changes: 1 addition & 3 deletions kedro-datasets/kedro_datasets/plotly/html_dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -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).
Expand Down
4 changes: 1 addition & 3 deletions kedro-datasets/kedro_datasets/plotly/json_dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -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).
Expand Down

0 comments on commit 91d80bd

Please sign in to comment.