Skip to content

Commit 73efbd7

Browse files
committed
style: format ingestion.py to pass CI
1 parent 0e6f26d commit 73efbd7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/dacos/core/ingestion.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def validate_silver_schema(file_path: Path) -> Result[bool, TypeError]:
3939
actual_dtype = actual_schema[column_name]
4040
if actual_dtype != expected_dtype:
4141
return Err(
42-
TypeError(f"Schema violation for '{column_name}': " f"Expected {expected_dtype}, got {actual_dtype}.")
42+
TypeError(f"Schema violation for '{column_name}': Expected {expected_dtype}, got {actual_dtype}.")
4343
)
4444

4545
return Ok(True)

0 commit comments

Comments
 (0)