Skip to content

Commit 544e9be

Browse files
committed
merge conflicts
1 parent 78af857 commit 544e9be

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

tests/integration/test_catalog.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727
from pyiceberg.catalog.rest import RestCatalog
2828
from pyiceberg.catalog.sql import SqlCatalog
2929
from pyiceberg.exceptions import (
30-
CommitFailedException,
3130
CommitFailedException,
3231
NamespaceAlreadyExistsError,
3332
NamespaceNotEmptyError,
@@ -37,12 +36,10 @@
3736
)
3837
from pyiceberg.io import WAREHOUSE
3938
from pyiceberg.partitioning import PartitionField, PartitionSpec
40-
from pyiceberg.partitioning import PartitionField, PartitionSpec
4139
from pyiceberg.schema import INITIAL_SCHEMA_ID, Schema
42-
from pyiceberg.transforms import BucketTransform
4340
from pyiceberg.table.metadata import INITIAL_SPEC_ID
4441
from pyiceberg.table.sorting import INITIAL_SORT_ORDER_ID, SortField, SortOrder
45-
from pyiceberg.transforms import DayTransform, IdentityTransform
42+
from pyiceberg.transforms import BucketTransform, DayTransform, IdentityTransform
4643
from pyiceberg.types import IntegerType, LongType, NestedField, TimestampType, UUIDType
4744
from tests.conftest import clean_up
4845

@@ -93,6 +90,7 @@ def rest_test_catalog() -> Generator[Catalog, None, None]:
9390
else:
9491
pytest.skip("PYICEBERG_TEST_CATALOG environment variables not set")
9592

93+
9694
@pytest.fixture(scope="function")
9795
def hive_catalog() -> Generator[Catalog, None, None]:
9896
test_catalog = HiveCatalog(

0 commit comments

Comments
 (0)