Skip to content

Commit e1b1465

Browse files
committed
fix ruff lint errors
1 parent 7effb64 commit e1b1465

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

PyStemmusScope/global_data/cams_co2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ def extract_cams_data(
6363
Returns:
6464
DataArray containing the CO2 concentration.
6565
"""
66-
ds = xr.open_mfdataset(files_cams, chunks='auto')
66+
ds = xr.open_mfdataset(files_cams, chunks="auto")
6767

6868
check_cams_dataset(cams_data=ds, latlon=latlon, time_range=time_range)
6969

PyStemmusScope/global_data/cci_landcover.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ def extract_landcover_data(
6565
Returns:
6666
Dictionary containing IGBP and LCCS land cover classes.
6767
"""
68-
cci_dataset = xr.open_mfdataset(files_cci, chunks='auto')
68+
cci_dataset = xr.open_mfdataset(files_cci, chunks="auto")
6969

7070
check_cci_dataset(cci_dataset, latlon, time_range) # Assert spatial/temporal bounds
7171

PyStemmusScope/global_data/copernicus_lai.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ def extract_lai_data(
6363
Returns:
6464
DataArray containing the LAI of the specified site for the given time range.
6565
"""
66-
ds = xr.open_mfdataset(files_lai, chunks='auto')
66+
ds = xr.open_mfdataset(files_lai, chunks="auto")
6767

6868
check_lai_dataset(ds, latlon, time_range)
6969

PyStemmusScope/global_data/era5.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ def get_era5_dataset(
127127
"""
128128
tol = RESOLUTION_ERA5 if name == "ERA5" else RESOLUTION_ERA5LAND
129129

130-
ds = xr.open_mfdataset(files, chunks='auto')
130+
ds = xr.open_mfdataset(files, chunks="auto")
131131

132132
check_era5_dataset(ds, name, latlon, time_range)
133133

0 commit comments

Comments
 (0)