Skip to content

Instantly share code, notes, and snippets.

@jdyke
Last active June 1, 2020 21:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jdyke/cae6b5621bd4f9694034c47ada2d6775 to your computer and use it in GitHub Desktop.
Save jdyke/cae6b5621bd4f9694034c47ada2d6775 to your computer and use it in GitHub Desktop.
get_flattened_keys
def get_flattened_keys(projects):
flat_keys = []
for project in projects:
for key_data in project:
massage(key_data)
flat_keys.append(flatten(key_data))
return flat_keys
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment