datamole-ai / edvart

An open-source Python library for Data Scientists & Data Analysts designed to simplify the exploratory data analysis process. Using Edvart, you can explore data sets and generate reports with minimal coding.
https://datamole-ai.github.io/edvart/
MIT License
48 stars 7 forks source link

feat!: change Verbosity enum values #84

Closed lukany closed 1 year ago

lukany commented 1 year ago

Having all values positive allows convenient constructs such as section_verbosity = section_verbosity or default_verbosity, where section_verbosity can be optional, i.e. Verbosity | None.

BREAKING CHANGE: Change Verbosity values. LOW is now 1 (was 0), MEDIUM is 2 (was 1) and HIGH is 3 (was 2).