Skip to content

Commit 6b8fe5b

Browse files
committed
style: fix formatting and end of file whitespace
1 parent fefad80 commit 6b8fe5b

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

tests/test_types.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -921,6 +921,7 @@ def test_nested_field_geography_with_params_as_string() -> None:
921921
assert field.field_type.crs == "EPSG:4326"
922922
assert field.field_type.algorithm == "planar"
923923

924+
924925
def test_decimal_precision_validation() -> None:
925926
"""Test that DecimalType rejects precision outside the [1, 38] range."""
926927
decimal_type = DecimalType(38, 2)
@@ -933,4 +934,4 @@ def test_decimal_precision_validation() -> None:
933934
DecimalType(0, 2)
934935

935936
with pytest.raises(ValidationError, match="Decimal precision must be between 1 and 38"):
936-
DecimalType(-5, 2)
937+
DecimalType(-5, 2)

0 commit comments

Comments
 (0)