From fb3ab59a06dcefc23f0643cfdd36e8abca2fd3ef Mon Sep 17 00:00:00 2001 From: Kurt Schwehr Date: Sun, 12 Nov 2023 15:13:28 -0800 Subject: [PATCH] Remove unnecessary semincolons (`;`) at the end of python statismens PiperOrigin-RevId: 581789497 --- samples/python/apidocs/ee_dictionary.py | 2 +- samples/python/apidocs/ee_number_int16.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/samples/python/apidocs/ee_dictionary.py b/samples/python/apidocs/ee_dictionary.py index ee41e7603..481673e3e 100644 --- a/samples/python/apidocs/ee_dictionary.py +++ b/samples/python/apidocs/ee_dictionary.py @@ -27,5 +27,5 @@ 'B2', 219, 'B3', 443 ] -print('ee.Dictionary from list input', ee.Dictionary(lst).getInfo()); +print('ee.Dictionary from list input', ee.Dictionary(lst).getInfo()) # [END earthengine__apidocs__ee_dictionary] diff --git a/samples/python/apidocs/ee_number_int16.py b/samples/python/apidocs/ee_number_int16.py index fdad1693c..9a563fb95 100644 --- a/samples/python/apidocs/ee_number_int16.py +++ b/samples/python/apidocs/ee_number_int16.py @@ -42,7 +42,7 @@ out_of_range_hi_to_int16.getInfo()) # A number greater than int16 range min cast to int16 becomes int16 range min. -INT16_MIN = -32768; +INT16_MIN = -32768 out_of_range_lo = ee.Number(INT16_MIN - 12345) print('Less than int16 min:', out_of_range_lo.getInfo())