Skip to content

Commit bec23ab

Browse files
Add missing return.
1 parent 26272ef commit bec23ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/snowflake/snowpark/_functions/scalar_functions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4194,4 +4194,4 @@ def uuid_string(
41944194
elif uuid is not None:
41954195
return builtin("uuid_string", _emit_ast=_emit_ast)(uuid)
41964196
else:
4197-
builtin("uuid_string", _emit_ast=_emit_ast)(name)
4197+
return builtin("uuid_string", _emit_ast=_emit_ast)(name)

0 commit comments

Comments
 (0)