I was able to turn that off by setting the quote option to be a single white space
df.coalesce(1).write.format("com.databricks.spark.csv").option("header", "true").option("quote"," ").option("codec", "org.apache.hadoop.io.compress.GzipCodec").save("File path")
But this will just replace option which put space in place of quote (")
There is one more option i.e., quote generally occurs as qualifier to separate some column when delimiter and separator are same
so you can change delimiter and get rid of quote automatically
df.coalesce(1).write.format("com.databricks.spark.csv").option("header", "true").option("delimiter", "|").option("codec", "org.apache.hadoop.io.compress.GzipCodec").save("File path")
Hope this works in your case