Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 43 additions & 0 deletions python/ee/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
import inspect
import os
import re
import typing
from typing import Any, Optional, Type, Union

from google.oauth2 import service_account
Expand Down Expand Up @@ -63,6 +64,48 @@
from .serializer import Serializer
from .terrain import Terrain

if typing.TYPE_CHECKING:
__all__ = (
'apply',
'call',
'profilePrinting',
'ServiceAccountCredentials',
'ApiFunction',
'Blob',
'Classifier',
'Clusterer',
'Collection',
'ComputedObject',
'ConfusionMatrix',
'CustomFunction',
'DateRange',
'Dictionary',
'Array',
'Date',
'EEException',
'List',
'Number',
'String',
'Element',
'Encodable',
'ErrorMargin',
'Feature',
'FeatureCollection',
'Filter',
'Function',
'Geometry',
'Image',
'ImageCollection',
'Join',
'Kernel',
'Model',
'PixelType',
'Projection',
'Reducer',
'Serializer',
'Terrain',
)

# Tell pytype not to worry about dynamic attributes.
_HAS_DYNAMIC_ATTRIBUTES = True

Expand Down