EDA Toolkit 0.0.11
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
.