Skip to content

Commit afe70f4

Browse files
committed
ruff fix
1 parent 8692113 commit afe70f4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

python/hsfs/engine/spark.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -630,7 +630,7 @@ def _serialize_to_avro(
630630
).alias("value"),
631631
]
632632
)
633-
633+
634634
def _deserialize_from_avro(
635635
self,
636636
feature_group: Union[fg_mod.FeatureGroup, fg_mod.ExternalFeatureGroup],
@@ -642,7 +642,7 @@ def _deserialize_from_avro(
642642
decoded_dataframe = dataframe.select(
643643
from_avro("value", feature_group._get_encoded_avro_schema()).alias("value")
644644
).select(col("value.*"))
645-
645+
646646
"""Decodes all complex type features from binary using their avro type as schema."""
647647
return decoded_dataframe.select(
648648
[

0 commit comments

Comments
 (0)