Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion dataframely/functional.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Copyright (c) QuantCo 2025-2025
# SPDX-License-Identifier: BSD-3-Clause

from collections.abc import Sequence
from typing import TypeVar

import polars as pl
Expand Down Expand Up @@ -62,7 +63,7 @@ def filter_relationship_one_to_at_least_one(
# ------------------------------------------------------------------------------------ #


def concat_collection_members(collections: list[C], /) -> dict[str, pl.LazyFrame]:
def concat_collection_members(collections: Sequence[C], /) -> dict[str, pl.LazyFrame]:
"""Concatenate the members of collections with the same type.

Args:
Expand Down
Loading