Skip to content

Commit

Permalink
join.py: Add FeatureCollection to _FeatureCollectionType.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 659548085
  • Loading branch information
schwehr authored and Google Earth Engine Authors committed Aug 5, 2024
1 parent 0449c55 commit d1a124a
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions python/ee/join.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,13 @@
from ee import computedobject
from ee import ee_string
from ee import featurecollection
from ee import filter
from ee import filter as ee_filter

_EeBoolType = Union[Any, computedobject.ComputedObject]
_FeatureCollectionType = Union[Any, computedobject.ComputedObject]
_FilterType = Union[filter.Filter, computedobject.ComputedObject]
_FeatureCollectionType = Union[
Any, featurecollection.FeatureCollection, computedobject.ComputedObject
]
_FilterType = Union[ee_filter.Filter, computedobject.ComputedObject]
_StringType = Union[str, ee_string.String, computedobject.ComputedObject]


Expand Down

0 comments on commit d1a124a

Please sign in to comment.