-
Notifications
You must be signed in to change notification settings - Fork 0
update(bubble-packed): plotnine — comprehensive quality review #4363
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
Changes from 1 commit
6ff3779
7d87b64
bcdc360
786a22a
ed4e7ca
6826a76
1ee71de
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -1,16 +1,16 @@ | ||||||
| library: plotnine | ||||||
| specification_id: bubble-packed | ||||||
| created: '2025-12-23T09:16:24Z' | ||||||
| updated: '2025-12-23T09:27:41Z' | ||||||
| generated_by: claude-opus-4-5-20251101 | ||||||
| updated: 2026-02-23T15:35:00+00:00 | ||||||
|
||||||
| updated: 2026-02-23T15:35:00+00:00 | |
| updated: '2026-02-23T15:35:00Z' |
Copilot
AI
Feb 23, 2026
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.
quality_score changed from a numeric value to null, which is likely to break any downstream consumers expecting an integer/float score (and it also conflicts with the implementation header still showing a /100 format). If the pipeline requires a score, keep it numeric; if unknown is allowed, ensure all other places (like the implementation header and any validators) agree with null.
Copilot
AI
Feb 23, 2026
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.
quality_score changed from a numeric value to null, which is likely to break any downstream consumers expecting an integer/float score (and it also conflicts with the implementation header still showing a /100 format). If the pipeline requires a score, keep it numeric; if unknown is allowed, ensure all other places (like the implementation header and any validators) agree with null.
| quality_score: null | |
| quality_score: 95 |
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.
The docstring header now includes
Quality: /100without a numeric value, which looks like a formatting regression and can break any tooling that parses these headers. Populate the quality score (e.g.,Quality: 90/100) or remove theQuality:field if it’s intentionally unknown.