Skip to content

Commit 02820ca

Browse files
author
Ariana Barzinpour
committed
linting
1 parent 74d2292 commit 02820ca

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

odc/stac/model.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -400,7 +400,11 @@ def strip(self) -> "ParsedItem":
400400
"""
401401
Copy of self but with stripped bands.
402402
"""
403-
return replace(self, bands={k: band.strip() for k, band in self.bands.items()}, accessories={})
403+
return replace(
404+
self,
405+
bands={k: band.strip() for k, band in self.bands.items()},
406+
accessories={},
407+
)
404408

405409
def assets(self) -> Dict[str, List[RasterSource]]:
406410
"""

0 commit comments

Comments
 (0)