Skip to content

Commit 92ff4fe

Browse files
committed
Cleanup
1 parent 062a2da commit 92ff4fe

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

pyiceberg/conversions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -472,7 +472,7 @@ def _(_: DecimalType, val: Decimal) -> str:
472472

473473
@to_json.register(UUIDType)
474474
def _(_: UUIDType, val: uuid.UUID) -> str:
475-
"""Serializes into a JSON string."""
475+
"""Serialize into a JSON string."""
476476
return str(val)
477477

478478

tests/integration/test_rest_schema.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
from pyiceberg.catalog import Catalog, load_catalog
2626
from pyiceberg.exceptions import CommitFailedException, NoSuchTableError, ValidationError
27-
from pyiceberg.expressions import literal
27+
from pyiceberg.expressions import literal # type: ignore
2828
from pyiceberg.partitioning import PartitionField, PartitionSpec
2929
from pyiceberg.schema import Schema, prune_columns
3030
from pyiceberg.table import Table, TableProperties
@@ -1144,6 +1144,7 @@ def test_initial_default_all_columns(
11441144
assert write_physical_type == field.write_default
11451145

11461146

1147+
@pytest.mark.integration
11471148
def test_add_required_column_initial_default(catalog: Catalog) -> None:
11481149
schema_ = Schema(NestedField(field_id=1, name="a", field_type=BooleanType(), required=False))
11491150
table = _create_table_with_schema(catalog, schema_)

0 commit comments

Comments
 (0)