Skip to content

Commit b5cfb78

Browse files
sumedhsakdeoclaude
andcommitted
Fix import ordering in test files
- Sort imports alphabetically as required by ruff formatting - No functional changes 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent ac8add8 commit b5cfb78

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/benchmark/test_read_benchmark.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
import pytest
3636

3737
from pyiceberg.catalog.sql import SqlCatalog
38-
from pyiceberg.table import ScanOrder, TaskOrder, ArrivalOrder, Table
38+
from pyiceberg.table import ArrivalOrder, ScanOrder, Table, TaskOrder
3939

4040
NUM_FILES = 32
4141
ROWS_PER_FILE = 500_000

tests/io/test_pyarrow.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@
8686
from pyiceberg.manifest import DataFile, DataFileContent, FileFormat
8787
from pyiceberg.partitioning import PartitionField, PartitionSpec
8888
from pyiceberg.schema import Schema, make_compatible_name, visit
89-
from pyiceberg.table import FileScanTask, ScanOrder, TaskOrder, ArrivalOrder, TableProperties
89+
from pyiceberg.table import ArrivalOrder, FileScanTask, TableProperties, TaskOrder
9090
from pyiceberg.table.metadata import TableMetadataV2
9191
from pyiceberg.table.name_mapping import create_mapping_from_schema
9292
from pyiceberg.transforms import HourTransform, IdentityTransform

0 commit comments

Comments
 (0)