Skip to content

Commit dd067f5

Browse files
author
Tom McCormick
committed
fix lint
1 parent 3649411 commit dd067f5

1 file changed

Lines changed: 3 additions & 5 deletions

File tree

tests/integration/test_writes/test_writes.py

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -732,11 +732,9 @@ def test_spark_writes_orc_pyiceberg_reads(spark: SparkSession, session_catalog:
732732
spark.sql(f"DROP TABLE IF EXISTS {identifier}")
733733

734734
# Create table with Spark using ORC format and desired format-version
735-
spark_df.writeTo(identifier) \
736-
.using("iceberg") \
737-
.tableProperty("write.format.default", "orc") \
738-
.tableProperty("format-version", str(format_version)) \
739-
.createOrReplace()
735+
spark_df.writeTo(identifier).using("iceberg").tableProperty("write.format.default", "orc").tableProperty(
736+
"format-version", str(format_version)
737+
).createOrReplace()
740738

741739
# Write data with ORC format using Spark
742740
spark_df.writeTo(identifier).using("iceberg").append()

0 commit comments

Comments
 (0)