Skip to content

Commit 2ac201d

Browse files
authored
Update universal_processing.py
Missing comma
1 parent b2132c6 commit 2ac201d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

narwhals-python/universal_processing.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def universal_pivot_v1(df: IntoFrameT) -> IntoFrameT:
3838
on="party_name",
3939
index="century",
4040
values="last_name",
41-
aggregate_function="count"
41+
aggregate_function="count",
4242
)
4343
.to_native()
4444
)
@@ -53,7 +53,7 @@ def universal_pivot_v2(df: IntoFrameT) -> IntoFrameT:
5353
on="party_name",
5454
index="century",
5555
values="last_name",
56-
aggregate_function="count"
56+
aggregate_function="count",
5757
)
5858
.to_native()
5959
)

0 commit comments

Comments
 (0)