Skip to content

Instantly share code, notes, and snippets.

@lakshmanok
Created October 16, 2016 03:03
Show Gist options
  • Save lakshmanok/b27b3a3cf89bbae1e1cb7b4b8c3d7461 to your computer and use it in GitHub Desktop.
Save lakshmanok/b27b3a3cf89bbae1e1cb7b4b8c3d7461 to your computer and use it in GitHub Desktop.
def clearest(scenes):
if scenes:
return min(scenes, key=lambda s: s.CLOUD_COVER)
else:
return None
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment