We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20b6722 commit 774af36Copy full SHA for 774af36
pystac/extensions/eo.py
@@ -69,7 +69,7 @@ def get_bands(self, asset=None):
69
# get assets with eo:bands even if not in item
70
if bands is None:
71
bands = []
72
- for (value) in self.item.get_assets().items():
+ for (key, value) in self.item.get_assets().items():
73
if 'eo:bands' in value.properties:
74
bands.extend(value.properties.get('eo:bands'))
75
0 commit comments