Skip to content

Commit

Permalink
image.py: Fix type annotation of linkedBands in linkCollection
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 658840430
  • Loading branch information
schwehr authored and Google Earth Engine Authors committed Aug 2, 2024
1 parent bb9aa0d commit d583ec5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/ee/image.py
Original file line number Diff line number Diff line change
Expand Up @@ -2498,7 +2498,7 @@ def linkCollection(
self,
# pylint: disable=invalid-name
imageCollection: _ImageCollectionType,
linkedBands: _EeAnyType = None,
linkedBands: Optional[_EeAnyType] = None,
linkedProperties: Optional[_EeAnyType] = None,
matchPropertyName: Optional[_StringType] = None,
# pylint: enable=invalid-name
Expand Down

0 comments on commit d583ec5

Please sign in to comment.