Skip to content

Commit

Permalink
Remove unnecessary semincolons (;) at the end of python statismens
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 581789497
  • Loading branch information
schwehr authored and copybara-github committed Nov 13, 2023
1 parent 549540b commit fb3ab59
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion samples/python/apidocs/ee_dictionary.py
Original file line number Diff line number Diff line change
Expand Up @@ -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]
2 changes: 1 addition & 1 deletion samples/python/apidocs/ee_number_int16.py
Original file line number Diff line number Diff line change
Expand Up @@ -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())

Expand Down

0 comments on commit fb3ab59

Please sign in to comment.