Skip to content

Commit

Permalink
Update param type hint
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-fgonzalezmendez committed Jan 19, 2024
1 parent 0efdc59 commit 7cabee2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/snowflake/snowpark/functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -750,7 +750,7 @@ def covar_samp(column1: ColumnOrName, column2: ColumnOrName) -> Column:
return builtin("covar_samp")(col1, col2)


def create_map(*cols: Union[ColumnOrName, Union[List[ColumnOrName], Tuple[ColumnOrName, ...]]]) -> Column:
def create_map(*cols: Union[ColumnOrName, Iterable[ColumnOrName]]) -> Column:
"""Transforms multiple column pairs into a single map :class:`~snowflake.snowpark.Column` where each pair of
columns is treated as a key-value pair in the resulting map.
Expand Down

0 comments on commit 7cabee2

Please sign in to comment.