Skip to content

Commit

Permalink
fix type hint
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbarros committed Jun 20, 2023
1 parent 85b0445 commit 496c37c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ydata_profiling/visualisation/plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def format_fn(tick_val: int, tick_pos: Any) -> str:


def _plot_word_cloud(
series: pd.Series | List[pd.Series],
series: Union[pd.Series, List[pd.Series]],
figsize: tuple = (6, 4),
) -> plt.Figure:
if not isinstance(series, list):
Expand Down

0 comments on commit 496c37c

Please sign in to comment.