Skip to content

EDA Toolkit 0.0.11

Compare
Choose a tag to compare
@lshpaner lshpaner released this 24 Sep 22:29
· 65 commits to main since this release

Fix TypeError in stacked_crosstab_plot for save_formats

Description:

Fixes a TypeError in the stacked_crosstab_plot function when save_formats is None. The update ensures that save_formats defaults to an empty list, preventing iteration over a NoneType object.

Changes:

  • Initializes save_formats as an empty list if not provided.
  • Adds handling for string and tuple input types for save_formats.

Issue Fixed:

Resolves TypeError when save_formats is None.