From 9c5004fdc75e8ba71eda829a8cc0c4612e1da1af Mon Sep 17 00:00:00 2001 From: Kurt Schwehr Date: Tue, 9 Dec 2025 07:03:40 -0800 Subject: [PATCH] Testing PR #603 - `__all__` PiperOrigin-RevId: 842221132 --- python/ee/__init__.py | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/python/ee/__init__.py b/python/ee/__init__.py index 312942243..b8312d0d7 100644 --- a/python/ee/__init__.py +++ b/python/ee/__init__.py @@ -63,6 +63,46 @@ from .serializer import Serializer from .terrain import Terrain +__all__: tuple[str, ...] = ( + 'Array', + 'Blob', + 'Classifier', + 'Clusterer', + 'Collection', + 'ComputedObject', + 'ConfusionMatrix', + 'CustomFunction', + 'Date', + 'DateRange', + 'Dictionary', + 'EEException', + 'Element', + 'Encodable', + 'ErrorMargin', + 'Feature', + 'FeatureCollection', + 'Filter', + 'Function', + 'Geometry', + 'Image', + 'ImageCollection', + 'Join', + 'Kernel', + 'List', + 'Model', + 'Number', + 'PixelType', + 'Projection', + 'Reducer', + 'Serializer', + 'ServiceAccountCredentials', + 'String', + 'Terrain', + 'apply', + 'call', + 'profilePrinting', +) + # Tell pytype not to worry about dynamic attributes. _HAS_DYNAMIC_ATTRIBUTES = True