-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat!: Refactor Report
into Report
and DefaultReport
.
#47
Conversation
a11ca42
to
29f40fd
Compare
Report
and DefaultReport
.
8faa91e
to
09d84f6
Compare
BREAKING CHANGE: * Most parameters of `Report` class have been removed. `Report` class now behaves as it would previously with `use_default_sections=False`. * Newly-added class `DefaultReport` now behaves as `Report` previously would with `use_default_sections=True`. * Most parameters of `TimeseriesReport` class have been removed. `DefaultTimeseriesReport` class now behaves as it would previously with `use_default_sections=False`. * Newly-added class `DefaultTimeseriesReport` now behaves as `TimeseriesReport` previously would with `use_default_sections=True`.
09d84f6
to
9d3dda1
Compare
Report
and DefaultReport
.Report
into Report
and DefaultReport
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- There is still mention about
use_default_sections
argument in docs:Line 129 in 9d3dda1
report = edvart.Report(df, use_default_sections=False) - The PR should be IMO
feat!
, notrefactor!
. Theoratically, it doesn't add any new features but it technically it changes API of existing classes and adds new classes.
Report
into Report
and DefaultReport
.Report
into Report
and DefaultReport
.
Thanks, fixed.
I'm not sure what constitutes a |
Resolves #45