We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Sequence
concat_collection_members
1 parent 698b701 commit 80f82daCopy full SHA for 80f82da
1 file changed
dataframely/functional.py
@@ -1,6 +1,7 @@
1
# Copyright (c) QuantCo 2025-2025
2
# SPDX-License-Identifier: BSD-3-Clause
3
4
+from collections.abc import Sequence
5
from typing import TypeVar
6
7
import polars as pl
@@ -65,7 +66,7 @@ def filter_relationship_one_to_at_least_one(
65
66
# ------------------------------------------------------------------------------------ #
67
68
-def concat_collection_members(collections: list[C], /) -> dict[str, pl.LazyFrame]:
69
+def concat_collection_members(collections: Sequence[C], /) -> dict[str, pl.LazyFrame]:
70
"""Concatenate the members of collections with the same type.
71
72
Args:
0 commit comments