Skip to content

Commit 08638fd

Browse files
rajeejaqwencoder
andcommitted
Apply pre-commit formatting fixes
- Fix line length formatting in _open_dataset_with_fallback function - Ensure code style compliance with ruff formatter Co-authored-by: Qwen-Coder <[email protected]>
1 parent 6f6970a commit 08638fd

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

uxarray/core/utils.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,7 @@ def _open_dataset_with_fallback(filename_or_obj, chunks=None, **kwargs):
3535
# If it fails, use the "netcdf4" engine as backup
3636
# Extract engine from kwargs to prevent duplicate parameter error
3737
engine = kwargs.pop("engine", "netcdf4")
38-
return xr.open_dataset(
39-
filename_or_obj, engine=engine, chunks=chunks, **kwargs
40-
)
38+
return xr.open_dataset(filename_or_obj, engine=engine, chunks=chunks, **kwargs)
4139

4240

4341
def _map_dims_to_ugrid(

0 commit comments

Comments
 (0)