Skip to content

feat: extend DelimitedCollection to set, frozenset, and tuple#81

Open
msto wants to merge 1 commit into
msto/rename-delimited-collectionfrom
msto/delimited-collection-types
Open

feat: extend DelimitedCollection to set, frozenset, and tuple#81
msto wants to merge 1 commit into
msto/rename-delimited-collectionfrom
msto/delimited-collection-types

Conversation

@msto

@msto msto commented Jun 17, 2026

Copy link
Copy Markdown
Collaborator

Summary

This PR is the second in a stack to expand Metric's collection parsing behavior to support tuple, set, and dict along with the existing list support, to provide parity with fgpyo.

Generalize DelimitedCollection beyond list to also parse and serialize set, frozenset, and tuple. Both the variadic tuple[T, ...] and the heterogeneous tuple[T1, T2, ...] are supported. (Pydantic natively validates the arity and per-position types of the latter.)

Related Stack

Generalize `DelimitedCollection` beyond `list` to also parse and serialize
`set`, `frozenset`, and `tuple` fields — including the variadic `tuple[T, ...]`
and fixed-arity, heterogeneous `tuple[T1, T2, ...]` (whose arity and
per-position types Pydantic validates). The `mode="before"` validator splits a
cell into a flat list of strings and lets Pydantic coerce it into the declared
container.

`list`/`tuple` preserve element order; `set`/`frozenset` are serialized sorted
by serialized form so output is stable across runs and roundtrips. Empty
elements map to `None` where the corresponding element type is optional
(uniform element type for list/set/frozenset/variadic-tuple, per-position for
fixed tuples).

Adds the `is_collection` typing helper.

Relates to #76.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
@msto msto self-assigned this Jun 17, 2026
@coderabbitai

coderabbitai Bot commented Jun 17, 2026

Copy link
Copy Markdown
Contributor

Warning

Review limit reached

@msto, we couldn't start this review because you've reached your PR review rate limit.

More reviews will be available in 59 minutes and 59 seconds. Learn how PR review limits work.

Your organization has used up its prepaid credits, and credit purchases are no longer available. Enable the review add-on in the billing tab to keep reviews running — you're only billed for reviews past your plan's rate limits ($0.25/file).

⌛ How to resolve this issue?

After more reviews become available, a review can be triggered using the @coderabbitai review command as a PR comment. Alternatively, push new commits to this PR.

To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based credits.

🚦 How do rate limits work?

CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan refill rate.

For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, the refill rate gradually slows as usage increases. The highest same-day bursts are limited more strictly.

Please see our Fair Usage Limits Policy for further information.

ℹ️ Review info
⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro

Run ID: a27257ed-0e64-4088-a48e-4baef0074935

📥 Commits

Reviewing files that changed from the base of the PR and between 8944939 and 118656d.

📒 Files selected for processing (6)
  • CHANGELOG.md
  • fgmetric/_typing_extensions.py
  • fgmetric/converters/_delimited_collection.py
  • fgmetric/metric.py
  • tests/test_delimited_collection.py
  • tests/test_typing_extensions.py

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

@msto

msto commented Jun 17, 2026

Copy link
Copy Markdown
Collaborator Author

@CodeRabbit review

@coderabbitai

coderabbitai Bot commented Jun 17, 2026

Copy link
Copy Markdown
Contributor
✅ Action performed

Review finished.

Note: CodeRabbit is an incremental review system and does not re-review already reviewed commits. This command is applicable only when automatic reviews are paused.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant