Skip to content

Commit 0ec6d58

Browse files
committed
FIX: reformat using black
1 parent 89b4c06 commit 0ec6d58

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

xarray/backends/common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def find_root_and_group(ds):
3434
"""Find the root and group name of a netCDF4/h5netcdf dataset."""
3535
hierarchy = ()
3636
while ds.parent is not None:
37-
hierarchy = (ds.name.split('/')[-1],) + hierarchy
37+
hierarchy = (ds.name.split("/")[-1],) + hierarchy
3838
ds = ds.parent
3939
group = "/" + "/".join(hierarchy)
4040
return ds, group

0 commit comments

Comments
 (0)