Skip to content

Commit

Permalink
add default
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcoGorelli committed Mar 28, 2024
1 parent 7dc0368 commit a1bf55e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion narwhals/functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@


def concat(
items: Iterable[DataFrame | LazyFrame], *, how: Literal["horizontal", "vertical"]
items: Iterable[DataFrame | LazyFrame],
*,
how: Literal["horizontal", "vertical"] = "vertical",
) -> DataFrame | LazyFrame:
if how not in ("horizontal", "vertical"):
raise NotImplementedError(
Expand Down

0 comments on commit a1bf55e

Please sign in to comment.