Skip to content

Commit cedaa95

Browse files
author
Yftach Zur
committed
Apply Ruff Formatting
1 parent 0e5dc2e commit cedaa95

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

pyiceberg/io/pyarrow.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -836,8 +836,8 @@ def _get_field_name(self, term: BoundTerm[Any]) -> Union[str, Tuple[str, ...]]:
836836
if full_name is not None:
837837
# If the field name contains dots, it's a nested field
838838
# Convert "parent.child" to ("parent", "child") for PyArrow
839-
if '.' in full_name:
840-
return tuple(full_name.split('.'))
839+
if "." in full_name:
840+
return tuple(full_name.split("."))
841841
return full_name
842842
# Fallback to just the field name if schema is not available
843843
return term.ref().field.name

0 commit comments

Comments
 (0)