Description
The following code should type-check, but doesn't:
import uuid
pyspark.sql.functions as F
my_udf = F.udf(lambda: str(uuid.uuid4())).asNondeterministic()
In python/pyspark/sql/functions.pyi the udf signature is wrong
The following code should type-check, but doesn't:
import uuid
pyspark.sql.functions as F
my_udf = F.udf(lambda: str(uuid.uuid4())).asNondeterministic()
In python/pyspark/sql/functions.pyi the udf signature is wrong