Skip to content

Commit 2b72658

Browse files
committed
Apply rustfmt
1 parent 6a90c86 commit 2b72658

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/functions.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1293,7 +1293,10 @@ fn variant_to_serde_json(variant: &parquet_variant::Variant, depth: usize) -> Re
12931293
use parquet_variant::Variant;
12941294

12951295
if depth > MAX_VARIANT_DEPTH {
1296-
return Err(DataFusionError::Execution(format!("Variant nesting depth exceeds limit of {}", MAX_VARIANT_DEPTH)));
1296+
return Err(DataFusionError::Execution(format!(
1297+
"Variant nesting depth exceeds limit of {}",
1298+
MAX_VARIANT_DEPTH
1299+
)));
12971300
}
12981301

12991302
Ok(match variant {

0 commit comments

Comments
 (0)