Skip to content

Commit f5c5414

Browse files
committed
style: use double quotes to satisfy pyink formatter
The project uses pyink-use-majority-quotes = true, which enforces double quotes. Single quotes in the string dtype check caused the lint CI to fail.
1 parent c68ef34 commit f5c5414

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

xarray_sql/df.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,7 @@ def _block_metadata(coord_arrays: dict, block: Block) -> PartitionBounds:
328328
# String/object dtypes are not representable as ScalarBound
329329
# (Int64/Float64/TimestampNanos) and numpy min/max ufuncs do not
330330
# support them. Skip so pruning treats the dimension conservatively.
331-
if coord_values.dtype.kind in ('U', 'S', 'O'):
331+
if coord_values.dtype.kind in ("U", "S", "O"):
332332
continue
333333
# Use actual min/max rather than first/last so that non-monotonic
334334
# coordinate axes (e.g. descending latitude 90→-90) are handled

0 commit comments

Comments
 (0)